0

Can you guys help me Im trying to code something and it's a error and thank you in C++

include <stdio.h> // Nom :rahma .prénom:mahmoudi Groupe:G1 #include <conio.h> #include <stdlib.h> typedef struct noeud { char val; struct noeud*g,*d; }*ArbreB; //pointeur avec char typedef struct noeud *ArbreB; /*Ajouter un noeud*/ ArbreB ajouterNoeud(char val, ArbreB g,ArbreB d) { ArbreB nv_arbre=(ArbreB)malloc(sizeof(struct noeud)); nv_arbre->val=val; nv_arbre->g=g; nv_arbre->d=d; return nv_arbre; } // appelle de la fonction /*ajouterNoeud(char val,ArbreB g,ArbreB d)*/ // pour remplir l'arbre de l'exercice n°1 (le tableau) ArbreB creerAbre() { char val scanf(" %c",&val) if(val!= '

#x27;) { ArbreB g = creerAbre(); ArbreB d = creerAbre(); return ajouterNoeud(ArbreB g,ArbreB d); } else return NULL; } //affichage de l'expression arithmetique // avec les parenthéses correctement balancées void Afficher (ArbreB R) { if(R != NULL) if((R->d != NULL)&&(a->g !=NULL)) { printf("("); affiche(R->d); printf("

2nd Dec 2021, 11:23 PM
Rahma Mah
Rahma Mah - avatar
1 Odpowiedź
0
Sololearn vous autorise qu'a envoyer 2048 caracteres pour chaque poste, alors pouvez vous envoyer l'autre partie du code ?
3rd Dec 2021, 4:12 PM
VCoder
VCoder - avatar