Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.70K
~542 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for leefuren

[CODE]#include <iostream> #include <fstream> #include <string> #include <cstdlib> // for exit(1); using namespace std; void Login(); int main() { Login(); return 0; } void Login() { char login_un[50], login_pw[50], username[50], password[50]; int c; ifstream uin("user.txt"); ifstream pin("pass.txt"); cout<<"Main\n\n" <<"(1) Login\n" <<"(2) Quit\n"; cin>> c; if (c==1) { uin.getline(username, 50); while …

Member Avatar for arpit56
1
542

The End.