Wap and daf to display the natural number from 1 to 100
Answers
Answered by
2
Answer:
#include <stdio.h>
#include <conio.h>
void main()
{
int i;
clrscr();
for(i=1;i<=100;i++)
{
printf("\n %d",i);
}
getch();
}
Similar questions