Computer Science, asked by javdo, 3 months ago

Write a program to print the first 10 natural numbers using a While loop.

Answers

Answered by anuradha1981980
0

Answer:

first 10 natural no.

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10

Explanation:

this is the answer

Answered by sanjudnath
4

Answer:

#include<stdio.h>

int main() {

int i = 1;

while (i <= 10) {

printf(“%d”, i);

i++;

}

return (0);

Similar questions