Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- typedef int calkowita;
- typedef enum {Wyporzyczona=0, Zniszczona, Oddana} Stan;
- Stan stan;
- //0 wyporzyczona
- //1 zniszczona
- typedef struct Uczen
- {
- int wiek;
- string PESEL;
- Stan stan;
- } Uczen;
- struct Punkt
- {
- int x;
- int y;
- };
- void kolos1()
- {
- calkowita a;
- stan = Zniszczona;
- cout << (int)stan<<endl;
- printf("%d", stan);
- int zmienna=5;
- Uczen uczen={ 22,"aaa",Wyporzyczona};
- uczen.wiek = 22;
- if (uczen.wiek == 23)
- {
- }
- int *ptr2;
- ptr2 = &zmienna;
- *ptr2 = 2;
- Uczen* ptr;
- ptr = &uczen;
- (*ptr).stan = Zniszczona;
- ptr->stan = Zniszczona;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement