[ create a new paste ] login | about

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

godneil - C, pasted on Mar 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# include <stdio.h>

int main(void){

int cool_joy = 0;
cool_joy = 10 + printf("Lets go out");

printf(" The restaurant is %d", cool_joy);


return 0;


} 


Output:
1
Lets go out The restaurant is 21


Create a new paste based on this one


Comments: