1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| #include <stdio.h>
struct Pret
{
char prete;
char aqui[20];
char quand[10];
} pret;
struct Livre
{
char nom[20];
char auteur[20];
char edition[20];
struct Pret pret;
} livre;
int main()
{
printf("Entrez le nom du livre: ");
fgets(livre.nom, sizeof livre.nom, stdin);
printf("Entrez l'auteur du livre: ");
fgets(livre.auteur, sizeof livre.auteur, stdin);
printf("Entrez l'edition du livre: ");
fgets(livre.edition, sizeof livre.edition, stdin);
printf("Le livre est-il prete?[O] ou [N]: ");
livre.pret.prete=fgetc(stdin);
if(livre.pret.prete=='O'){
printf("A qui le livre est-il prete? ");
fgets(livre.pret.aqui, sizeof livre.pret.aqui, stdin);
printf("Quand?(jj-mm-aa) ");
fgets(livre.pret.quand, sizeof livre.pret.quand, stdin);
}
return 0;
} |
Partager