c言語の穴
cの中の2つの小さな穴について
1、sizeof() ,
static int a = 10;
sizeof(a) = ?
2、strlen , '\0' 。
char ch[2] = {'1','2'};
strlen(ch) = ?