If 25 us a value, then what is it's data type? (c++)
Answers
Answered by
0
All variables use data-type during declaration to restrict the type of data to be stored. Therefore, we can say that data types are used to tell the variables the type of data it can store. Whenever a variable is defined in C++, the compiler allocates some memory for that variable based on the data-type with which it is declared. Every data type requires a different amount of memory.
Data types in C++ is mainly divided into three
Similar questions