[ create a new paste ] login | about

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

slevy1ster - C, pasted on Aug 20:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdlib.h>
#include <stdio.h>
int main()
{
int a = 0;
int b = 0;
if (a=3,b=4) {
 printf("%d\n",(a+=5,b+=a) );
}
printf("%d\n", (2 == 3)); 
printf("%d\n", (-1 == -1));
return 0;
}


Output:
1
2
3
12
0
1


Create a new paste based on this one


Comments: