I have displayed a statement in C++ program with single quote and answer which i got was the random numbers where as when i used the double quotes in C++ it displayed me the statement.
cout << 'Hello world'; //gave me the random numbers
cout << "Hello world"; //displayed me the statement i.e Hello world
Why This happened pls do let me know and what those random numbers were at the time of execution ?