[ create a new paste ] login | about

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

kamarakay2000 - C, pasted on Apr 9:
1
2
3
4
5
6
7
#include<stdio.h>
int main(void){
int good_teacher = 0;
good_teacher = 10+ printf("you are a great teacher\n");
printf("displaying number is:%d",good_teacher);
return 0;
}


Output:
1
2
you are a great teacher
displaying number is:34


Create a new paste based on this one


Comments: