Bonjour à tous,
Je demande votre aide car j'ai un petit problème de programmation avec des structures imbriquée. Visual studio 2010 ne me dis pas qu'il y'a une erreur de code mais quand je compile j'ai une erreur de type: Unhandled exception at 0x00911b57 in Liste_de_course_2.exe: 0xC00000FD: Stack overflow.qui apparait.
Voici mon code structure:
typedef struct Produit_Laitier
{
char Produit[LongNom];
double Prix_Unitaire;
}Produit_Laitier;
typedef struct Charcuterie
{
char Produit[LongNom];
double Prix_Unitaire;
}Charcuterie;
typedef struct Magasin
{
char Nom_Magasin[LongNom];
Produit_Laitier Produit_Laitier[LongArt];
Charcuterie Charcuterie[LongArt];
}Magasin;
typedef struct Liste
{
Produit_Laitier Produit_Laitier[LongArt];
Charcuterie Charcuterie[LongArt];
int Quantite;
}Liste;
Merci pour vos réponses et bonne journée. :)
____________________________________________________________
for(1)
{
Our_Love++;
}