Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- struct osoba{
- 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);
- //wyświetlanie
- printf(" imie: %s ",ad1.imie);
- printf("nazwisko: %s ",ad1.nazwisko);
- printf("wiek: %d \n",ad1.wiek);
- printf(" pesel: %d \n",ad1.pesel);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement