Which of the following data types is suitable for storing a character in C++? 

  • boolean
  • char 
  • float 
  • int 
In C++, the char data type is specifically designed to store characters. It typically occupies 1 byte in memory and can represent a single character from the ASCII table.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *