Computer Science, asked by aastha128, 5 months ago

write a program to print first ten natural number. ​

Answers

Answered by kishandevganiya1
2

Answer:

Pictorial Presentation:

Sample Solution:

C Code: #include <stdio.h> void main() { int i; printf("The first 10 natural numbers are:\n"); for (i=1;i<=10;i++) { printf("%d ",i); } printf("\n"); } ...

Flowchart: ...

C Programming Code Editor:

Answered by Anonymous
4

Answer:

pruple u too army.......

Similar questions