✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
struct Chien
{
char modele[10];
int tailleTruffe;
};
int main()
{
struct Chien toutou = {"Lupus",4};
printf("Chien : %s - %d\n",/* A COMPLETER */);
return 0;
}
Compléter le programme