Guest User

Untitled

a guest
Jun 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. void conditionMerge(int p, int q)
  2. {
  3. int x = 4;
  4.  
  5. if (p == q) {
  6. // p == q, x == 4
  7. if (p == x) {
  8. // p == q == 4
  9. checkpoint1:
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment