なぜこれが機能しないのですか?最初の引数として-lまたは-sを使用しようとすると、ifステートメントは使用されません。彼らは常にelseステートメントに行きます。
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
if (argv[1] == "-l")
{
printf("Yay!\n");
}
else if (argv[1] == "-s")
{
printf("Nay!\n");
}
else
{
printf("%s\n", argv[1]);
}
return 0;
}