hi everyone, hope u r all feeling fine :mrgreen:
this is my program:
#include <stdio.h>
int main()
{
char pass[12];
printf("Enter Password: ");
gets(pass);
if (pass == "neo")
{
printf ("ini");
}
else
printf("Wrong");
return 0 ;
}
when i enter "neo" as password, it does the "wrong" thing :(
how can i correct it