Advertisement
ScratchMonkey

The Concors Challenge

Feb 22nd, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. struct S
  2. {
  3.    int i1;
  4.    int i2;
  5. };
  6. union U
  7. {
  8.    char* pc;
  9.    S s;
  10. };
  11. typedef U F(int *);
  12. int *f(F* f1, F* f2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement