70,020
社区成员




short func(void)
{
printf("func() called !!!!!!!!!!\n");
return 3;
}
int main(void)
{
int i = 0;
sizeof(i++);
printf("i=%d\n", i);
printf("sizeof(func)=%lu\n", sizeof(func));
printf("sizeof(func())=%lu\n", sizeof(func()));
}