While Loop_1.1

#include
int main (void)
{

    int digit=0;
    while(digit<=9)
    {
        printf("%d\n",digit);
        digit++;
    }
    system("pause");
    return 0;
}

0 comments:

Post a Comment