It's not a long time that i'm started to learn C++ language and i need some help .. I want to know the meaning of int, void, double, float and char . plzz Some help here :/
these are the basic data types in C++
int-means integer and is used for holding integers
double-used for floating point numbers(greater precision-~7 d.p)
float-used for floating point numbers(~5 d.p)
char-for holding characters
void-could be used for a number of things like a void pointer. it is not anything in particular