Skip to main content

Printing 10 to 1

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i;
for(i=10;i>=0;i--)
printf("%d\n",i);
getch();
}

Comments

Popular posts from this blog