Skip to content

Instantly share code, notes, and snippets.

@shana
Created November 14, 2018 09:58
Show Gist options
  • Save shana/28b377cde053a5a407d81c069fd9fbcd to your computer and use it in GitHub Desktop.
Save shana/28b377cde053a5a407d81c069fd9fbcd to your computer and use it in GitHub Desktop.
Goto in ternary expressions
#include <stdlib.h>
int foo(bool x) {
return x ? ({ b: goto a; 1; }) : ({ a: goto b; 2; });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment