How to properly compare command-line arguments?

浪子不回头ぞ 提交于 2019-11-27 16:10:35

In your code, argv[1] == "-s" is the erroneous part. comparison of strings cannot be done with == operator.

To compare strings, you need to use strcmp().

Your code should look like

if ( ! strcmp(argv[1], "-s")) { //code here }

if you want to check if argv[1] contains "-s" or not.

Compare the two strings using the strcmp(s1,s2) function.

            if (strcmp(argv[1],"-s")==0)
                    girls();  //Prints "Girls"
            else if(strcmp(argv[1],"-k")==0)
                    boys();   //Prints "Boys"
            else
                    printf("OMG!!");

if you check the argv[1] == "-s" the condition will not be true. since it is a string you can use the strcmp function.

     if(( strcmp(argv[1],"-s")) == 0)
     girls();
     else if ((strcmp(argv[1],"-k")) == 0)
     boys();

Try this..

You have to compare the string using the strcmp function. You cannot simply check the string in equality operator.

  int strcmp(const char *s1, const char *s2);

Try this in your code.

if ((strcmp(argv[1],"-s")==0)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!