用英语说一下C语言的数据类型
发布网友
发布时间:2022-05-09 16:25
我来回答
共2个回答
热心网友
时间:2023-10-09 07:29
There are four basic types of variable in C;
they are: char, int, double and float.
char is the most basic unit addressable by the machine; typically a single octet(one byte). This is an integral type.
int is the most natural size of integer for the machine; typically a whole 16, 32 or 64-bit(2, 4, or 8 bytes respectively) addressable word.
float is a single-precision floating point value.
double is a double-precision floating point value.
热心网友
时间:2023-10-09 07:29
char string int double float long