我認爲a
完全等於b
。但跑步的結果證明我錯了。我錯誤地理解哪一部分?我很難理解類型字符
下面的代碼:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char a[] = "abcdefg";
char b[] = {'a' , 'b' , 'c' , 'd' , 'e' , 'f' , 'g'};
printf("%s\n" , a);
printf("%s\n" , b);
system("pause");
return 0;
}
您應該包含程序的輸出 – Zags