fork(1) download
  1. #include <stdio.h>
  2.  
  3. #define foo(c) ({ int x = c; x; })
  4.  
  5. int bar(char c) {
  6. int x = c;
  7. x;
  8. }
  9.  
  10. int main(void) {
  11. int x = foo('0');
  12. int y = bar('A');
  13. printf("%d\n%d\n", x, y);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
48
0