I would like to check the arguments in argv[], but it fails to check the second character.
For example,
I can do that:
int main(int argc, char *argv[]){
if (*argv[1] == "A")
printf("Hello: %s\n", argv[1]);
}
However, I can't check argv[1] when I change "A" to "AB" like this:
if (*argv[1] == "AB")
printf("Hello: %s\n", argv[1]);
}