Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- struct S
- {
- int i1;
- int i2;
- };
- union U
- {
- char* pc;
- S s;
- };
- typedef U F(int *);
- int *f(F* f1, F* f2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement