What are the three non numeric Data type in c plus plus?

1 answer

Answer

1134193

2026-05-03 05:50

+ Follow

In C++, three common non-numeric data types are:

  1. char: Used to store single characters, such as letters or symbols, and occupies one byte of memory.
  2. string: A class from the C++ Standard Library that represents a sequence of characters, allowing for manipulation of text.
  3. bool: Represents Boolean values, which can be either true or false, often used for conditional statements and logic.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.