Advertisement
Guest User

Untitled

a guest
Nov 7th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. int f(int a[static 3])
  2. {
  3. return a[2];
  4. }
  5.  
  6. int main(void)
  7. {
  8. int a[2];
  9. return f(a);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement