what's the mechanism of sizeof() in C/C++?

后端 未结 9 1145
你的背包
你的背包 2020-12-09 13:16

It seems sizeof is not a real function?

for example, if you write like this:

int i=0;
printf(\"%d\\n\", sizeof(++i));
printf(\"%d\\n\", i);
         


        
9条回答
  •  难免孤独
    2020-12-09 13:33

    sizeof() returns the size in bytes of whatever you pass as an argument to it. In a 32-bit architecture sizeof(int) would return 4, while sizeof(char) would return 1.

提交回复
热议问题