logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> struct joueur {   char nom [20];   int classemen...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

#include <stdio.h>

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 ?

More questions like this

Want instant access to all verified answers on moodle.insa-toulouse.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome