What will be the output of the following code if the user enter the value “GOOD MORNING”.
What will be the output of the following code if the user enter the value “GOOD MORNING”.
1. char string [80];
gets(string);
cout< 2. char string [80]; cin>>string; cout< 3. charch; ch = getchar(); cout< 4. char string [80]; cin.getline(string,9); cout<
5 views