[ create a new paste ] login | about

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

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

    while (1)
      {
        if (i >= 10)
          {
            break;
          }
        i++;
        printf ("x");
      }
    printf ("\n");
    getchar ();
    return 0;
}


Output:
1
xxxxxxxxxx


Create a new paste based on this one


Comments: