// Ex310.cc // Sec. 3.1. of lecture // Assignments #include main() { int a,b,c; float x,y; x = 0; y = x+4; cout << " x = " << x << endl; cout << " y = " << y << endl; a = b = c = 123; cout << " a = " << a << endl; cout << " b = " << b << endl; cout << " c = " << c << endl; }