Tasks Checks Test Case Incomplete Testing 5 Character String Input below for more details. Output 5 Hello 0 Enter a string: 5 String in upper case letters is: 5 Hello Results HELLO Expected Output → HELLO Used dynamic array allocation ^ main.cpp 1 #include 2 #include #include 4 5 using namespace std; 7 int main() 8 { 9 10 11 char *str = new char[80]; 12 13 int len; 14 15 int i; 16 17 cout << "Enter a string: "; 18 19 cin.get(str, 80); 21 cout << endl; 22 23 cout << "String in upper case letters is:" << endl; 24 25 len = strlen(str); 26 27 28 for (i = 0; i < len; i++) 29 30 cout << static_cast(toupper(*(str+i))); 31 cout << endl; 32 33 return 0; 34 }

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter6: Arrays
Section: Chapter Questions
Problem 12PE
icon
Related questions
Question

C++ Code

I have the right answer it seems but it is not giving me the check mark

Tasks
Checks
Test Case Incomplete
Testing 5 Character String
Input
Output
5
Hello
below for more details.
Enter a string: 5
String in upper case letters is:
5
Hello
Results →
HELLO
0
Expected Output Ⓡ
HELLO
Used dynamic array allocation
main.cpp
1 #include <iostream>
2 #include <cstring>
3 #include <cctype>
4
5 using namespace std;
6
7 int main()
8 {
9
+
10
11 char *str = new char [80];
12
13 int len;
14
15 int i;
16
17 cout << "Enter a string: ";
18
19 cin.get(str, 80);
20
21 cout << endl;
22
23 cout << "String in upper case letters is:" << endl;
24
25 len strlen(str);
26
=
27
28 for (i = 0; i < len; i++)
29
30 cout << static_cast<char> (toupper(*(str+i)));
31 cout << endl;
32
33 return 0;
34 }
Transcribed Image Text:Tasks Checks Test Case Incomplete Testing 5 Character String Input Output 5 Hello below for more details. Enter a string: 5 String in upper case letters is: 5 Hello Results → HELLO 0 Expected Output Ⓡ HELLO Used dynamic array allocation main.cpp 1 #include <iostream> 2 #include <cstring> 3 #include <cctype> 4 5 using namespace std; 6 7 int main() 8 { 9 + 10 11 char *str = new char [80]; 12 13 int len; 14 15 int i; 16 17 cout << "Enter a string: "; 18 19 cin.get(str, 80); 20 21 cout << endl; 22 23 cout << "String in upper case letters is:" << endl; 24 25 len strlen(str); 26 = 27 28 for (i = 0; i < len; i++) 29 30 cout << static_cast<char> (toupper(*(str+i))); 31 cout << endl; 32 33 return 0; 34 }
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning