explain different types of variables in C
Answers
Answered by
2
1
char
Typically a single octet(one byte). This is an integer type.
2
int
The most natural size of integer for the machine.
3
float
A single-precision floating point value.
4
double
A double-precision floating point value.
5
void
Represents the absence of type.
Similar questions