Advertisement
Guest User

Untitled

a guest
Sep 18th, 2016
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. struct foo {
  5.     int x:1;
  6.     union {
  7.         enum bar{
  8.             a = 1,
  9.             b = 2,
  10.         } t;
  11.         void *(*ptr)(struct foo { int a; int b; } *array[restrict static 2]);
  12.     };
  13. } my_lovely_function(void);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement