Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. while (a)
  2. {
  3. ctx: while(b)
  4. {
  5. while (c)
  6. {
  7. if(d) break ctx;
  8. ...
  9. }
  10. }
  11. ...
  12. }
  13.  
  14. error: expected ‘;’ before ‘ctx’
  15. break ctx;
  16. error: ‘ctx’ was not declared in this scope
  17. warning: label ‘ctx’ defined but not used [-Wunused-label]
  18. ctx:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement