A character constant is member of the character set in which a program is written which is surrounded by single quotation marks (‘).
Riya Answered question July 6, 2023
Character constants in C++ are literal values that represent individual characters. They are enclosed within single quotes (‘ ‘). Character constants can represent alphanumeric characters, special characters, or even escape sequences to represent special characters such as newline or tab. They are used to store and manipulate individual characters in C++ programs.
Riya Answered question July 6, 2023
