I'm having a little problem regarding this log-in program.
#include<stdio>
#include<conio>
#define p printf
#define s scanf
main()
{
char pass[20];
char user[20];
clrscr();
p("\nEnter your username: ");
s("%s", user);
p("\n\nEnter your password: ");
s("%s", pass);
if(user=="abel" && pass=="pass")
p("\nW E L C O M E !!");
else
p("\nINVALID INFORMATION!!");
getch();
return 0;
}
Even if I enter the correct username (user) and password(pass), it would still goes directly to the else statement. Logic error, or am I missing something.
Thanks!!