// CS210 F'03 Exam 1 // Question 6 // #include using namespace std; int main(void) { int a(10),b(20),c(a-b); cout << a << endl; cout << b << endl; cout << c << endl; } // output // 10 // 20 // -10