/* C Program To Print Number From 10 to 1 */
For any query regarding c/c++ feel free to contact me on khimanichirag@gmail.com or comment below. I try my best to solve it.
For any query regarding c/c++ feel free to contact me on khimanichirag@gmail.com or comment below. I try my best to solve it.
#include <stdio.h>
#include <conio.h>
void main()
{
int i=0;
clrscr();
for(i=10;i>0;i--)
{
printf("%d\n",i);
}
getch();
}
No comments:
Post a Comment