[ create a new paste ] login | about

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

C, pasted on Apr 21:
1
2
3
4
5
#include <stdio.h>
main()
{ char ch[3][5]={"AAAA", "BBB","CC"};
printf("\"%s\"\n", ch[1]);
}


Output:
1
2
3
"BBB"

Exited: ExitFailure 6


Create a new paste based on this one


Comments: