1). write a program to print the first 10 positive odd integers with the help of for loop?
Answers
Answered by
0
Answer:
int i;
for (i = 1; i < 20; i += 2)
{
printf("%d\n", i);
}
Explanation:
Here's the program to print the first 10 positive odd integers with help of for loop.
Similar questions