Program to Find ASCII Value of a Character
In C++ programming, a character variable stores an ASCII value (an integer number between 0 and 127) rather than the character itself. This is known as the ASCII value. For instance, the ASCII value of ‘A’ is 65. Therefore, to find the ASCII value of the given Character, we make use of the concept of Type-Casting. […]
November 5, 2022 | C++ | No comments