[ create a new paste ] login | about

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

C, pasted on May 6:
1
2
3
4
5
6
7
8
9
#include "stdio.h"
int main()
{
int i;
for (i = 1; i < 5; i++)
{
printf("12345\n");
}
}


Output:
1
2
3
4
5
6
12345
12345
12345
12345

Exited: ExitFailure 6


Create a new paste based on this one


Comments: