logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> int main(void){   int i;   typedef struc...

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

#include <stdio.h>

int main(void){

  int i;

  typedef struct t {

    int efface;

    char tab[4];

  }tab;

  tab tableau;

  tableau.efface=1;

  for (i=0;i<3;i++)

    tableau.tab[i]='a';

  tableau.tab[3]='\0';

  if (tableau.efface)

    printf("le tab est efface\n");

  else

    printf("le tab contient : %s\n",tableau.tab);

  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