Computer Science, asked by killerboyexe, 5 months ago

Write a program to display the number from 1 to 10.​

Answers

Answered by ITZProGaurav2
2

Answer:

Write a program in C to display the first 10 natural numbers.

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 rekhatripathi151
0

Answer:

Kuch bhi

Explanation:

lalalallalalala

Similar questions