logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> void affiche(struct t var) {   printf("%d %c %f\...

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

#include <stdio.h>

void affiche(struct t var)

{

  printf("%d %c %f\n", var.i, var.c, var.f);

}

int main(void)

{

  struct t{

    int i;

    char c;

    float f;

  };

  struct t var;

  var.i = 10;

  var.c = 'b';

  var.f = 4.5;

  affiche(var);

  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