Question: C++ programming Trace the following C++ code and provide the int score = 999; char grade = 'X'; if (score > = 90) grade= 'A'
C++ programming Trace the following C++ code and provide the int score = 999; char grade = 'X'; if (score > = 90) grade= 'A' ; else if (score > = 80) grade = 'B'; else if (score > = 70) grade= 'C'; else grade= (score > >=60)? 'D' : 'F' cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
