[ create a new paste ] login | about

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

appunti2 - C, pasted on May 2:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
int main (void)
{
    int i = 0;
    for (;;)
      {
        if (i >= 10)
          {
            break;
          }
        printf ("x");
        i++;
      }
    getchar ();
    return 0;
}


Output:
1
xxxxxxxxxx


Create a new paste based on this one


Comments: