Write a C program to print the first 10 natural numbers using for loop.
#include <stdio.h>
int main()
{
printf("The First 10 Natural Numbers are\n");
for (int i = 1; i <= 10; i++)
{
printf("%d\n", i);
}
}

This program displays the first 10 natural numbers using a while loop.
#include <stdio.h>
int main()
{
int i = 1;
while (i <= 10)
{
printf("%d\n", i);
i++;
}
}
1
2
3
4
5
6
7
8
9
10
This example uses the do while loop to print the first 10 natural numbers.
#include <stdio.h>
int main()
{
int i = 1;
do
{
printf("%d\n", i);
} while (++i <= 10);
}
1
2
3
4
5
6
7
8
9
10