// File: strupr.cpp // Demonstrate a function to uppercase a string #include #include #include using namespace std; void strupr(string &s) {for (int i=0;i"; getline(cin,s1); strupr(s1); cout << "Result:" << s1 << endl; }