| 198 | code = "Unknown"; |
| 199 | } |
| 200 | void getdetails() |
| 201 | { |
| 202 | cout << " Enter name: "; |
| 203 | cin >> name; |
| 204 | cout << " Enter code: "; |
| 205 | cin >> code; |
| 206 | } |
| 207 | void showdetails() |
| 208 | { |
| 209 | cout << " NAME: " << name << endl; |
nothing calls this directly
no outgoing calls
no test coverage detected