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