c语言中malloc函数

malloc函数原型void *malloc(unsigned int size);中的unsigned是什么意思
2025-01-02 01:59:19
推荐回答(2个)
回答1:

unsigned是无符号的意思
unsigned int 就是非负整数
也就是size只能是0或者正数

回答2:

无符号