[ create a new paste ] login | about

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

C, pasted on Aug 2:
1
2
3
4
5
6
7
8
9
10
11
#include<stdio.h>

int main(void)
{

int a = printf("test\n");
printf("%d",a);

return 0;

}


Output:
1
2
test
5


Create a new paste based on this one


Comments: