[ create a new paste ] login | about

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

C, pasted on Dec 7:
1
2
3
4
5
6
7
8
#include "stdio.h"

main()
{
int a=12;
a+=a-=a*a;
printf("%d",a);
}


Output:
1
2
-264
Exited: ExitFailure 4


Create a new paste based on this one


Comments: