[ create a new paste ] login | about

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

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

int main(void){

int forgive = 0;
forgive = 5 + printf("JesusIsLove");

printf("  show the result = %d", forgive);


return 0;



}


Output:
1
JesusIsLove  show the result = 16


Create a new paste based on this one


Comments: