Question: just convert these lines of code from c language to c++ void show_record() {system(cls); char name[20]; float scr; FILE *f; f=fopen(score.txt,r); fscanf(f,%s%f,&name,&scr); printf( tt*************************************************************); printf(

just convert these lines of code from c language to c++

void show_record()   {system("cls"); char name[20]; float scr; FILE *f; f=fopen("score.txt","r"); fscanf(f,"%s%f",&name,&scr); printf(" \t\t*************************************************************"); printf(" \t\t %s has secured the Highest Score %0.2f",name,scr); printf(" \t\t*************************************************************"); fclose(f); getch();} void reset_score()   {system("cls");   float sc; char nm[20]; FILE *f; f=fopen("score.txt","r+"); fscanf(f,"%s%f",&nm,&sc); sc=0; fprintf(f,"%s,%.2f",nm,sc);   fclose(f);} 

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 Programming Questions!