Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
char* を返すコードがありました。cpp に書き込む場合:
char* test_char = new char[size];
すべて問題ありませんが、ヘッダーに書き込むと:
char* test_char;
そしてcppで:
test_char = new char[size];
プログラムはコンパイルされますが、実行されません。
私は何を間違っていますか?