Write a
program to point
numbers from 1 to 10.
Answers
Answered by
4
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
0
Answer:
Hope this helped you
Plz mark me brainliest
Explanation:
- 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:
Similar questions