fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x = ({
  5. int i = 0;
  6. for (int j = 0 ; j != 6 ; j++) {
  7. i += j;
  8. }
  9. i;
  10. });
  11. printf("%d\n", x);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
15