When initializing an array, C allows you to fill it with values. So char s[100] = "abcd";. is basically the same as int s[3] = { 1, 2, 3 };.
確定! 回上一頁