スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2039: '_popen': '_iobuf' のメンバーではありません。C:\Program Files (x86)\Windows Kits\10\include\10.0.14393.0\ucrt\corecrt_wstdio.h(26): note: '_iobuf' の宣言を確認してください
ソース(バグ有り):
//パイプを作成し、コマンドを実行するサンプル #include <stdio.h> int main() { |
ソース(修正済み):
//パイプを作成し、コマンドを実行するサンプル #include <stdio.h> int main() { |
スポンサード リンク