[ create a new paste ] login | about

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

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

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


Output:
1
xxxxxxxxxx


Create a new paste based on this one


Comments: