我用 C 编写的程序有问题。确实,它停在了这一行e->identifiant=0;
代码 :
struct Evenement* e=(struct Evenement*)(malloc(sizeof(struct Evenement)));
e->identifiant=0;
和 :
struct Evenement{
int identifiant;
char titre[100];
struct Creneau creneau;
char lieu[50];
char description[500];
};
你有想法吗?