c program to print first 10 natural numbers,c program to print first 10 natural numbers using array,c program for sum of n natural numbers,c program for sum of n natural numbers using for loop,c program for sum of n natural numbers using function,c program to find sum of n natural numbers,c program to find sum of n natural numbers using recursion,c program to find sum of n natural numbers using while loop,
c program to print dispaly first 15 natural numbers
#include"stdio.h"
#include"conio.h"
void main()
{
int i;
clrscr();
printf("First 15 natural numbers are=\n");
for(i=1;i<16 div="" i="">
{
printf("\n%d",i);
}
getch();
}
16>