Write a program to print the first 10 natural numbers using a While loop.
Answers
Answered by
0
Answer:
first 10 natural no.
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Explanation:
this is the answer
Answered by
4
Answer:
#include<stdio.h>
int main() {
int i = 1;
while (i <= 10) {
printf(“%d”, i);
i++;
}
return (0);
Similar questions