Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. int i = 0;
  2. int a[4];
  3. a[i] = i++; //<--- UB here
  4.  
  5. int i = 0;
  6.  
  7. int foo(){
  8. return i++;
  9. }
  10.  
  11. int main(){
  12. int a[4];
  13. a[i] = foo();
  14. return 0;
  15. }
  16.  
  17. a[i] = foo();
  18.  
  19. a[i] = i++;
  20.  
  21. a[i] = foo();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement