Question: [ Goff ] Consider the following program that tries to print out a report card for the semester. It compiles without any compile - time

[Goff] Consider the following program that tries to print out a report card for the semester. It compiles without any compile-time errors in GCC, but there are a total of 4 issues in this program. Identify them, and explain why they are issues. Some issues may result in warnings, others will be silent.
#include
void printReportCard(char* grades){
printf("REPORT CARD
");
while(*grades){
printf("\t%d
",*grades);
grades++;
}
printSemesterInfo();
}
void printSemesterInfo(){
printf("Term: Spring 2022
");
printf("School: Fulton School of Engineering
");
}
void main(){
char grades[]={'A','B','C','D'};
printReportCard(grades);
return 0;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!