Computer Science, asked by aishakhan24140, 4 months ago

Write a
program to point
numbers from 1 to 10.​

Answers

Answered by legend8718
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 Rithiesh07
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