char name[] = " ";
char address[] = " ";
char school[] = " ";
char age[] = " ";
double myVisit;
double ofc;
int a;
cout << "What is your name?";
cin.getline(name, 100);
cout << "What is your age?";
cin.getline(age,10);
cout << "What school do you attend?";
cin.getline(school, 100);
cout <<"What is your address?";
cin.getline(address,30);
cout <<"How many times have you went to see?";
cin >> myVisit;
cout<<"How many times have I?";
cin >> ofc;
cout <<"Which option would you like? 1. Optimistic\n 2. Pessimistic";
cin >> a;
Please give me some advice! Thank you in advance for replies