[ create a new paste ] login | about

Link: http://codepad.org/pbdAHDCH    [ 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 toolboz = 0;
toolboz = 20 + 30;

printf ("toolboz is %d ", toolboz); 



return 0;

}


Output:
1
toolboz is 50 


Create a new paste based on this one


Comments: