[ create a new paste ] login | about

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

appunti2 - C, pasted on May 1:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main (void)
{
    int a = -20;
    int b = 10;
    int c = (a *= 2, b += 10, c = a + b);
    printf ("c contiene %d\n", c);
    getchar ();
    return 0;
}


Output:
1
c contiene -20


Create a new paste based on this one


Comments: