[ create a new paste ] login | about

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

godneil - C, pasted on Aug 23:
1
2
3
char string [16] = "Jesus is Lord"; \\string variable array of characters

char string *pointer = "Jesus is Lord"; \\string constant


Output:
1
2
3
4
5
6
Line 2: error: stray '\' in program
Line 2: error: stray '\' in program
Line 2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'variable'
Line 4: error: stray '\' in program
Line 4: error: stray '\' in program
Line 4: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'constant'


Create a new paste based on this one


Comments: