[ create a new paste ] login | about

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

C++, pasted on Jun 29:
1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;
int main()
{
    int x, y, z, k;
    x = (y=4, z=16, k=32);
    cout << x;
}


Output:
1
32


Create a new paste based on this one


Comments: