meaning of some functions ?? plzz

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 :/
Last edited on
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

Aceix.
Thnx a loooooot about thoses informations .. your anser was really helpful thnx again :)
Topic archived. No new replies allowed.