> Online tutorial : PRINT THE NUMBER using c
Showing posts with label PRINT THE NUMBER using c. Show all posts
Showing posts with label PRINT THE NUMBER using c. Show all posts

PRINT THE NUMBER using c


PRINT THE NUMBER 1 TO 100


#include<studio.h>
#include<conio.h>
void main()
{
int i;
clescr();
i=1;
while(i<100)
{
printf("\n %d", i);
i++;
}
getch();
}

OUTPUT


1,2,3,.............,100