スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C3193: '%': '/clr' または '/ZW' コマンド ライン オプションが必要です
ソース(バグ有り):
#include <iostream>
%include <fstream>
int main()
{ |
ソース(修正済み):
#include <iostream>
#include <fstream>
int main()
{ |
スポンサード リンク