write a program to print first ten natural number.
Answers
Answered by
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
4
Answer:
pruple u too army.......
Similar questions
Geography,
2 months ago
Computer Science,
5 months ago
English,
10 months ago
World Languages,
10 months ago
Math,
10 months ago