✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
struct joueur {
char nom [20];
int classement;
float gain;
};
int main (void)
{
struct joueur Bruel;
Bruel.nom="Patrick";
Bruel.classement=1;
Bruel.gain=100000;
printf("%s, %d,%f",
Bruel.nom,Bruel.classement,Bruel.gain);
return(0);
}
Que donne l'exécution de ce programme ?