The World of Computer Programming Language
1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> #include <conio.h> void main (void) { int c = 1; while( c <= 10) { printf("%d\n", c); c++; } getch(); }// main
1 2 3 4 5 6 7 8 9 10
No comments:
Post a Comment