This question already has answers here:
http://stackoverflow.com//questions/3960954/multicharacter-literal-in-c-and-c”>Multicharacter literal in C and C++ (6 answers)
http://stackoverflow.com//questions/7755202/multi-character-constant-warnings”>Multi-character constant warnings (6 answers)
Closed 7 hours ago.
I'm new to C++. I was wondering why I get A2105376B when I run the following code:
#include <iostream>
int main(){
std::cout <<'A' << ' ' <<'B'<<std::endl;
return 0;
}
Thanks in advance!
Please login or Register to submit your answer