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.
プログラムに渡されたargcの数に問題がある ため、argcをチェックすると2に等しくありません!! 助けが必要です。どうすればその問題を解決できますか?
C コード スニペット :
if (2 != argc) { fprintf(stderr, "Usage: %s <port>\n", argv[0]); exit(1); }
プログラム名自体が引数としてカウントされることを忘れないでください。
myProgram -flag variableargcの_3
myProgram -flag variable
argc
3