これは私のコードです。このコードはうまく動作します。 しかし、 "cout < <" Hello world! "の" endl "を削除すると、< < endl;"が実行されません。 This is what I get when delete endlcout << "hello" << endlでC言語のプログラムが動作を停止しました
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char * name;
char * n = "aaaa";
strcpy(name, n);
cout << name;
cout << "Hello world!" << endl;
return 0;
}
以下は、endlを削除したコードです。
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char * name;
char * n = "aaaa";
strcpy(name, n);
cout << name;
cout << "Hello world!";
return 0;
}
代わりに絵 – Garf365
へのリンクを与えることのあなたのポスト内側に、コピー/貼り付けエラーメッセージがたぶん[ 'strcpy'参照](HTTPをお読みください:
は、代わりのような何かを.com/w/c/string/byte/strcpy)? – juanchopanza