#include<stdio.h> #include<conio.h> void main() { int i; clrscr(); i=1; while(i<=10) { printf("%d\t",i); i++; } getch(); } |
Output:-
______________________________________________________
______________________________________________________
______________________________________________________
______________________________________________________
Post a Comment