摘要: 1 #include <stdio.h> 2 #define N 4 3 int main() 4 { 5 int a[N] = { 1, 9, 8, 4 }; 6 char b[N] = { '1', '9', '8', '4' }; 7 int i; 8 printf("sizeof(int) 阅读全文