情報学部 | 菅沼ホーム | 全体目次 | 演習解答例 | 付録 | 索引 |
Undefined symbol _sqry ・・・・・
gcc test.c // C の場合,実行可能ファイル:a.exe g++ test.cpp // C++ の場合,実行可能ファイル:a.exe gcc test.c -o test // C の場合,実行可能ファイル:test.exe g++ test.cpp -o test // C++ の場合,実行可能ファイル:test.exe
g++ test.cpp -std=c++17 -o test // g++ の場合 cl test.cpp /std:c++17 // visual C++ の場合
情報学部 | 菅沼ホーム | 全体目次 | 演習解答例 | 付録 | 索引 |