Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- struct adres{
- char kod[6];
- char miasto [20];
- char ulica [20];
- int num_domu;
- int num_mieszkania;
- };
- struct osoba{
- struct adres ad2;
- char imie[20];
- char nazwisko[20];
- int wiek;
- int pesel;
- };
- struct osoba ad1;
- printf("podaj imie ");
- fgets(ad1.imie,20,stdin);
- printf("podaj nazwisko ");
- fgets(ad1.nazwisko,20,stdin);
- printf("podaj wiek ");
- scanf("%d",&ad1.wiek);
- printf("podaj pesel ");
- scanf("%d",&ad1.pesel);
- printf("podaj kod pocztowy");
- fgets(ad1.ad2.kod,20,stdin);
- printf("podaj miasto");
- fgets(ad1.ad2.miasto,20,stdin);
- printf("podaj numer domu ");
- scanf("%d",&ad1.ad2.num_domu);
- //wyświetlanie
- printf(" imie: %s ",ad1.imie);
- printf("nazwisko: %s ",ad1.nazwisko);
- printf("wiek: %d \n",ad1.wiek);
- printf(" pesel: %d \n",ad1.pesel);
- printf("miasto: %s",ad1.ad2.miasto);
- return 0;
- }
Add Comment
Please, Sign In to add comment