#include using namespace std; int main() { string str("Welcome C++"); const double PI = 3.14159; const int SIZE = 256; cout << str << " in CE325 course." << endl; cout << "Constant PI: " << PI << endl; cout << "SIZE is: " << SIZE << endl; }