Question: Make a flowchart diagram using this programming. #include using namespace std; int main() { char name[100], email[30], phone_number[20], ic_number[20]; int number_of_guest, time_to_stay; cout < <
Make a flowchart diagram using this programming.
#include
using namespace std;
int main()
{
char name[100], email[30], phone_number[20], ic_number[20];
int number_of_guest, time_to_stay;
cout<< " Enter your name : ";
cin>>name;
cout<< " Enter your email : ";
cin>>email;
cout<< " Enter your phone number : ";
cin>>phone_number;
cout<< " Enter your ic number : ";
cin>>ic_number;
cout<< " Enter number of guest : ";
cin>>number_of_guest;
cout<< " Enter time to stay : ";
cin>>time_to_stay;
cout<
cout<< " Your name is "<< name << endl;
cout<< " Your email is "<< email << endl;
cout<< " Your phone number is "<< phone_number << endl;
cout<< " Your ic number is "<< ic_number << endl;
cout<< " number of guest is "<< number_of_guest << endl;
cout<< " time to stay "<< time_to_stay << endl;
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
