C语言中有四种整数类型:short、int、long和long long。这些类型的长度和范围不同,可以根据需要选择使用。 其中,short和long类型可以用signed或unsigned修饰,表示有符号或无符号类型。int类型默认为有符号类型,long long类型只有有符号类型。 整数默认类型 在C语言中,如果定义整数变量时没有显式指定类型,则默认为int类型。