[ create a new paste ] login | about

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

C, pasted on Apr 12:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

void main()
{
    int i, x;
    for(i=0;i<5;i++)
    {
        x = 0;
        printf("%d",x);
        x++;
    }
}


Output:
1
00000


Create a new paste based on this one


Comments: