CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// input city as WB for West Bengal etc .
// input only first name eg. Pritam .
#include <iostream>
#include <string>
using namespace std;
class Bank {
public :
Bank (string n , string f , int a , long long int nm , string c , string s , string ct , long long int p)
{
name = n;
father = f;
age = a;
numb = nm;
country = c;
state = s;
city = ct;
pincode = p;
cout << "Name " << name << endl;
cout << "Parent's Name " << father << endl;
cout << "Age " << age << endl;
cout << "Mobile Number " << numb << endl;
cout << "Country " << country << endl;
cout << "State " << state << endl;
cout << "City " << city << endl;
cout << "Pincode " << pincode << endl;
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run