C has a special operator (sizeof) that returns the size of a data type ... int main( int argc, char* argv[] ) { printf("sizeof(char) = %lu\n", sizeof(char) ); ...
確定! 回上一頁