Computer Science, asked by pratikmunna926, 11 days ago

What is data types? Explain basic data types in c++?​

Answers

Answered by MagicalAura
3

\large\tt\underline{\green{Answer :-}}

  1. Integer.
  2. Character.
  3. Boolean.
  4. Floating Point.
  5. Double Floating Point.
  6. Valueless or Void.
  7. Wide Character.
Answered by hlohana137
0

variable is bucket,data type is category and values are store in bucket in simple words which type of value u want to store in the particular variable is shown by data type.

like e.g.

int i;

it means i can store only integer type value. i can't store character type value.

i=1;   (valid)

i='a'; (invalid)

c++ datatype

int,char,float,double,void

Similar questions