Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. int main()
  2. {
  3. if (a)
  4. foo();
  5. else
  6. if (b) // line 6
  7. bar();
  8. else
  9. baz();
  10. }
  11.  
  12. int main()
  13. {
  14. if (a)
  15. foo();
  16. else
  17. if (b)
  18. bar();
  19. else
  20. baz();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement