#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define N 15
int main(int argc, char *argv[])
{
char Nome[N], Cognome [N], Nome_M[N], Cognome_M[N];
int Voto=0, Voto_M=0;
FILE*fp;
fp=fopen(argv[1], "r");
while(fscanf(fp,"%s %s %d", Nome, Cognome, &Voto)!=EOF){
if(Voto>Voto_M){
Voto_M=Voto;
strcpy(Nome_M,Nome);
strcpy(Cognome_M,Cognome);
}
}
printf("Il voto piu' alto e' %s %s %d", Nome_M, Cognome_M, Voto_M);
return 0;
}