[ create a new paste ] login | about

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

C, pasted on Apr 26:
1
2
3
4
5
6
7
#include<stdio.h>
char* fun(){
 return "your is Quixotic";
}
int main(){
 printf("%s", ({char* s; s=fun(); s+8;}));
}


Output:
1
2
Quixotic
Exited: ExitFailure 8


Create a new paste based on this one


Comments: