fork(1) download
  1. #include <stdio.h>
  2. #define min(x,y) ( (x) < (y) ? (x) : (y) )
  3. int main(void) {
  4. int x= 23 + min(3,4);
  5. printf("%d\n", x);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
26