[ create a new paste ] login | about

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

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

int main (void) {

int Jesus = 0;
Jesus = 5 + 9 - 4;

printf("Jesus is : %d", Jesus);

return 0;


}


Output:
1
Jesus is : 10


Create a new paste based on this one


Comments: