c语言中各个类型的sizeof长度
摘要:
#include <stdio.h> int main() { printf("\nA Char is %lu bytes", sizeof( char )); printf("\nAn int is %lu bytes", sizeof( int )); printf("\nA short is 阅读全文
posted @ 2016-05-11 15:33 木花猫 阅读(1083) 评论(0) 推荐(0) 编辑