fork download
  1. #include <stdio.h>
  2.  
  3. #define MIN(a,b) a < b ? a : b
  4.  
  5. int main(void) {
  6. // your code goes here
  7. printf("min: %d", MIN(2, 1));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
min: 1