Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. struct osoby{
  6.     string imie;
  7.     string nazwisko;
  8.     long pesel;
  9. };
  10. int main(){
  11.     osoby osoba[1];
  12.     cout << "Podaj imie ";
  13.     cin >> osoba[1].imie;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement