c programme for printing 1 to 100 numbers
Answers
Answered by
2
#include<stdio.h>
#include<conio.h>
void main()
{
printf("1,2,3,4,5,6,7,8,9..........98,99,100");
getch();
}
fazlomr9:
Please do write the numbers completely in the 'printf' part.
Similar questions