fork download
  1. #include <stdio.h>
  2. #define with(...) for (__VA_ARGS__, _wth, *_wthPtr = &_wth; _wthPtr; _wthPtr = NULL)
  3.  
  4. int main() {
  5. with(int i = 3, j = 4) {
  6. printf("%d %d\n", i, j);
  7. }
  8. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
3 4