C Keywords
C Keywords
double A data type that is usually 64 bits long which can store fractional
numbers
float A data type that is usually 32 bits long which can store fractional
numbers
int A data type that is usually 32 bits long which can store whole
numbers
long Ensures that an integer is at least 32 bits long (use long long to
ensure 64 bits)
signed Specifies that an int or char can represent both positive and
negative values (for int this is the default so the keyword is not
usually necessary)