#include <iostream>
using namespace std;
int main()
{
char strin[206];
strin = "sds";
cout<<strin;
}
爲什麼會出現此錯誤?使用char []創建字符串
error: incompatible types in assignment of 'const char [4]' to 'char [206]' //on line strin = "sds"
我下面this初學者教程
用途:'strcpy'。等等,爲什麼不簡單地使用'std :: string'? – 2013-04-09 09:00:01
呵呵,Ankur問「爲什麼」,每個人都回答「該怎麼辦」:) – 2013-04-09 09:02:00
我建議忽略該教程。它是......如何把這個放在好的工作中 - 不要說出那些好話。這很糟糕。你不會從中學習C++。 – 2013-04-09 09:03:14