sizeof_type.c */ #include <stdio.h> int main(void) { printf("char : %d Byte\n" , sizeof(char)); printf("int : %d Bytes\n", sizeof(int)); printf("long : %d ...
確定! 回上一頁