[ create a new paste ] login | about

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

C, pasted on Jun 12:
1
2
3
4
5
6
7
8
/* "Hello, World!": */

int a;
main(void)
{
    printf("Hello,World!"\n);
    return 0;
}


Output:
1
2
3
In function 'main':
Line 6: error: stray '\' in program
Line 6: error: expected ')' before 'n'


Create a new paste based on this one


Comments: