Question: void printReportCard ( char * grades ) { printf ( REPORT CARD ) ; while ( * grades ) { printf (

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!