我目前正在学习 C 并且正在努力解决如何遍历字符串数组。
假设我定义了一个数组,如下所示:
char* argv_custom[] = {"--debug", "--verbose", "--test", "--ultimate"};
现在,我将如何确定 argv_custom 中的字符串数量?(例如 argc_custom)
我一开始是不是走对了这条路?另外,是否可以执行以下操作:
伪代码
if ('--debug' in argv_custom) { // do stuff }