Advertisement
Guest User

Untitled

a guest
Jul 12th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. typedef struct
  2. {
  3.     int a;
  4.     int b;
  5. } foo_t;
  6.  
  7. foo_t f(void)
  8. {
  9.     foo_t foo;
  10.     foo.a = 7;
  11.     foo.b = 9;
  12.     return foo;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement