Data Types in C++ Technical Elite
Data Types in C++ Data Types The data types defines a set of values and set of operation on those values . The computer manipulates various types of data. The data is given to the program as input . It is processed according to the program instruction and output is returned. The data and its types are defined before designing the actual program to process the data. The type of each data value is identified at the beginning of program design A C++ program may need to process different types of data . Each data type required different amount of memory. C++ provide the following data types int float double char Integer Data type ...