void Q1_1() { const int SIZE = 22; char value[] = {'ce','e', 'E', 'p', '1', 'u','s', 'P', 'L', 'U', 's'}; //ASCII code of A to Z is 65 to 90 cout<

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section: Chapter Questions
Problem 4PP: (Numerical) Write and test a function that returns the position of the largest and smallest values...
icon
Related questions
Question

How can I make this run?

void Q1_1()
{
const int SIZE = 22;
char value[] = {'c','e','E', 'p','l','u','s','p','L', 'U', 's'};
V/ASCII code of A to Z is 65 to 90
cout<<endl<<"Output of Q1_1: ";
for (ctr=0; ctr<SIZE; ctr++)
if(value[ctr] % 2 == ®)
value[ctr] = tolower(value[ctr]);
else
value[ctr] = toupper (value[ctr]);
cout<<value<endl;
}
What will be the output of the given program snippet (user defined fucntion)?
Note: ASCII code of A-Z is 65 to 90 and answer is case sensitive
Transcribed Image Text:void Q1_1() { const int SIZE = 22; char value[] = {'c','e','E', 'p','l','u','s','p','L', 'U', 's'}; V/ASCII code of A to Z is 65 to 90 cout<<endl<<"Output of Q1_1: "; for (ctr=0; ctr<SIZE; ctr++) if(value[ctr] % 2 == ®) value[ctr] = tolower(value[ctr]); else value[ctr] = toupper (value[ctr]); cout<<value<endl; } What will be the output of the given program snippet (user defined fucntion)? Note: ASCII code of A-Z is 65 to 90 and answer is case sensitive
Expert Solution
steps

Step by step

Solved in 2 steps with 1 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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr