MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / SetUser

Method SetUser

Project_E-Commerce_App_V1.0/Header.h:40–52  ·  view source on GitHub ↗

Set Info of User

Source from the content-addressed store, hash-verified

38
39 // Set Info of User
40 void SetUser() {
41 cout << "\t\t\t\t Register User:" << endl << endl;
42 cout << "\t\t\t\t User Name : "; cin >> Name;
43 cout << "\t\t\t\t Telephone : "; cin >> TellNum;
44 cout << "\t\t\t\t Login : "; cin >> Login;
45 cout << "\t\t\t\t Password : "; cin >> Parol;
46
47 // Info sended to Memory
48 Name_Memory = Name;
49 Parol_Memory = Parol;
50 Login_Memory = Login;
51 TellNum_Memory = TellNum;
52 }
53
54 // Friend Functions
55 //Validation Check for parol

Callers 1

F_General_MenuFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected