The C++ Built-In Data Type and Arrays

Wednesday, May 6th, 2009

The C++ Built-In Data Type 
C++ provides built-in support for primitive arithmetic data types such as integer:
//declares an integer object, ival
//initialized to a first value of 1024
int ival = 1024;
It also supports double precision and single precision floating point data types: