Can you help me with this C++ code?
What is the problem in this code? I enter correct username and password but it said it is not correct! _______________________________________ #include <iostream> #include <conio. h> using namespace std; int main() { int pass; char username[100]; char password[100]; cout << " Welcome to TH Server\n--------------------------------------------------------------------------------"; cout << " Enter your username : "; cin >> username; cout << " Enter your password : "; cin >> password; if ( username == "taha"){ if ( password == "91765430911"){ pass == 1; } } else{ pass == 0; } if ( pass == 1) { cout << "--------------------------------------------------------------------------------"; cout << " Welcome to your panel Taha."; } else { cout << "--------------------------------------------------------------------------------"; cout << " Username or password is not correct!" ; } getch(); return 0; } ________________________________________ Sorry for its writingđ