Computer Science, asked by rupalir8087, 2 months ago

1). write a program to print the first 10 positive odd integers with the help of for loop?​

Answers

Answered by divyanshigola17
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