Pages

Monday, January 2, 2012

C Programming to display 100 to 1


/*to display 100 to 1*/
#include<stdio.h>
#include<stdlib.h>
int main( )
{
    int i;
    for (i=100; i>=1; i--)
        printf ("%d\t",i);
    system ("pause");
    return 0;
}

No comments:

Post a Comment