Data types in C++

A data type is used to indicate the type of data value stored in a variable. All C compilers support a variety of data types. This variety of data types allows the programmer to select the type appropriate to the needs of the application as well as the machine. With the exception of void the basic datatypes may have several modifiers receding them to serve the needs of various situations. The modifiers signed, unsigned, long and short may applied to character and integer basic data types. ANSI C supports the…

Read More