[ create a new paste ] login | about

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

C, pasted on Jun 27:
1
2
3
4
5
6
7
#define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}


Output:
1
2
64
Exited: ExitFailure 2


Create a new paste based on this one


Comments: