Advertisement
lukasd

struktury przykład

Jan 14th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.60 KB | None | 0 0
  1. typedef int calkowita;
  2.  
  3. typedef enum {Wyporzyczona=0, Zniszczona, Oddana} Stan;
  4.  
  5. Stan stan;
  6. //0 wyporzyczona
  7. //1 zniszczona
  8.  
  9.  
  10. typedef struct Uczen
  11. {
  12.     int wiek;
  13.     string PESEL;
  14.     Stan stan;
  15. } Uczen;
  16.  
  17. struct Punkt
  18. {
  19.     int x;
  20.     int y;
  21. };
  22.  
  23. void kolos1()
  24. {
  25.     calkowita a;
  26.  
  27.     stan = Zniszczona;
  28.     cout << (int)stan<<endl;
  29.    
  30.     printf("%d", stan);
  31.  
  32.     int zmienna=5;
  33.  
  34.     Uczen uczen={ 22,"aaa",Wyporzyczona};
  35.  
  36.     uczen.wiek = 22;
  37.  
  38.     if (uczen.wiek == 23)
  39.     {
  40.     }
  41.  
  42.     int *ptr2;
  43.     ptr2 = &zmienna;
  44.     *ptr2 = 2;
  45.  
  46.     Uczen* ptr;
  47.     ptr = &uczen;
  48.  
  49.     (*ptr).stan = Zniszczona;
  50.     ptr->stan = Zniszczona;
  51.  
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement