Hi i need help about this:
int t;
t = 1;
char abc[256];
int main() {
scanf("%s", abc);
if(abc == "google") {
printf("%s \n", abc);
system("firefox");
} else
printf("error");
}
it always return error please someone help!
i already tried scanf("%c", &abc);
and i rewrote this about 5 times with the same result.
I'm new at this so this can be a very stupid thing.