I'm new to C so I found it weird when I saw this error in the line of code. Could you help me with it please?
The line which is showing the error is
if (Name == "abc") {
//full code
#include <stdio.h>
#include <stdlib.h>
int main()
{
char Name[8];
puts("Enter your name here");
scanf("%s", Name);
if (Name == "abc") {
puts("No, your name is abcd");
}
else {
printf("Yes, your name is %s", Name);
}
return 0;
}