#include <stdio.h>
int main()
{
short int i = 20;
char c = 97;
printf("%d, %d, %d\n", sizeof(i), sizeof(c), sizeof(c + i));
return 0;
}
sizeof(a+b) "a is short int type & b is char type" の出力が 2, 1, 4 の場合にどうなるか教えてください。