Can someone explain why this short code in C++ doesn't produce the expected output. The code is supposed to print the string in capital letters.
#include <iostream>
#include <string>
using namespace std;
int main(){
string sample("hi, i like cats and dogs.");
cout << "small: " << sample << endl << "BIG : ";
for(char c: sample)
cout << toupper(c);
cout<<endl;
return 0;
}
The output of the above program is:
small: hi, i like cats and dogs.
BIG : 72734432733276737569326765848332657868326879718346
but I expected:
small: hi, i like cats and dogs.
BIG : HI, I LIKE CATS AND DOGS.
I've only programmed in python.