int a[][3]={1,2,3,4,5,6,7,8,9};则sizeof(a)/sizeif(a[0])这个表达式的值是多少?
sizeof(a) = 3sizeof(a[0]) = 3所以值为1
因为是3行3列的数组,所以a 是 9,a[0] 行数也是3 ,结果 9/3=3