```c if (!strcmp(option,"1")) { printf("good"); } else {

if (!strcmp(option,"1"))
        {
            printf("good");
        }
        else
        {
            printf("bad");
        }
Was this page helpful?