[ create a new paste ] login | about

Link: http://codepad.org/ZKrSA3IF    [ raw code | output | fork ]

appunti2 - C, pasted on May 1:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
int main (void)
{
    int i = 0;

    while (i < 10)
      {
        i++;
        printf ("x");
      }
    printf ("\n");
    getchar ();
    return 0;
}


Output:
1
xxxxxxxxxx


Create a new paste based on this one


Comments: