[ create a new paste ] login | about

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

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


Output:
1
2
a contiene 4;
b contiene 3.


Create a new paste based on this one


Comments: