[ create a new paste ] login | about

Link: http://codepad.org/tgg8iIo1    [ 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
Line 1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'square'


Create a new paste based on this one


Comments: