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.
これは非常に簡単な質問です。
Cでargv [2]の値を出力する方法は知っていますが、Cでargv [2] [1]の値を出力する方法がわかりません。誰か教えてもらえますか?
もしかして:
printf("%c\n", argv[2][1]);
argvは宣言されchar* argv[]ているためargv[2][1]、タイプは です。出力するにはinをchar使用します。%cprintf
argv
char* argv[]
argv[2][1]
char
%c
printf
を実行するprogram_name hello worldとo、2 番目の引数の 2 番目の文字が出力されます。
program_name hello world
o