1. #include using namespace std; int big(int a, int b); int big(int a, int b, int c); int main() { int x = big(3, 5); int y = big(300, 60); int z = big(30, 60, 50); cout
#include using namespace std; void swapArray(int* p, int* q, int size); void printArray(int* p, int size); int main() { cout
#include using namespace std; class Tower { private: int height; public: Tower(); Tower(int h); int getHeight(); }; Tower::Tower() : height(1){} Tower::Tower(int h): height(h) {} int Tower::getHeight() { return height; } int main() { Tower myTower; Tower seoulTower(100); cout