Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- typedef struct uczen
- {
- char imie[20];
- int ilosco;
- float oceny[20];
- }uczen;
- void funkcjatest(int a, float* b, uczen* uczen)
- {
- }
- void funkcjatest2(int d, float* c, uczen* uczen)
- {
- }
- void funkcjatest2(int d, float c, uczen* uczen)
- {
- }
- bool mniejszy(int a, int b)
- {
- if (a < b)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- bool wiekszy(int a, int b)
- {
- if (a > b)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- int porownaj(int a, int b, bool(*ptrFunc) (int , int ))
- {
- if (ptrFunc(a, b)==1)
- {
- return a;
- }
- else
- {
- return b;
- }
- }
- void kolos1()
- {
- /*int zmienna;
- int* ptr;
- ptr = &zmienna;
- void(*ptrFunc) (int, float*, uczen*);
- ptrFunc = &funkcjatest2;
- float real;
- uczen uczneA;
- ptrFunc(3,&real, &uczneA);*/
- printf("%d", porownaj(5, 10, &wiekszy));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement