bonjour t le monde ; svp je veux une correction à mon programme il se compile mais il ne s’exécute pas correctement (je sais pas comment utiliser les balise c pr ça j'ai poster mon programme comme ça ; merci d'avance
Code:#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct CDTheque { char artiste[20]; char album[20]; int annee; int stock; }CD; char saisi(char *nom,char *code) { char *s; s = malloc (sizeof (*s) * (strlen (nom) + 1)); printf("donner votre nom"); getchar(); gets(nom); printf("donner votre code"); gets(code); strcat(s,nom); strcat(s,"_"); strcat(s,code); strcat(s,".txt"); return s; } int main() { char Nom[30],Code[30]; saisi(Nom,Code); return 0; }[/SIZE]
-----