When we perform the following code:
char p = 0 ;
cout << p << endl ;
Does this mean that p stores the symbol whose ASCII code is 0? (Which is NULL Character, and therefore nothing gets printed?)
The range of character data type is -128 to 127. And ASCII 0 to 256. So, how those ASCII symbols (code > 127) get printed?
From the commented dupe links, I cant understand, the above part of the question.