C语言规则

1.数据类型所包含范围:

(个人认为记住某个类型数字的范围最好的方法就是记住这种类型的数字占用的字节数)

char:1byte(-128 ~ 127)

short: 2 byte (-32767~32768)

unsigned short :2byte(0~65536)

int:4byte(-2147483648 ~ 2147483647)

unsigned int :4Byte

long == int

long long :(8 byte)

double:(8 byte)

规律就是unsigned 表示只有整数,而没有标明unsigned时就是有正有负。

 

2.C语言运算规则:

&表示按位与,&&表示逻辑与。

 

3.C语言语法规则

1.break表示退出循环。continue表示强行中止本次循环,进入下一个循环。

你可能感兴趣的:(C语言规则)