fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int ab(int n, int m){
  5. return fmin(n,m);
  6. }
  7.  
  8.  
  9.  
  10. int main(void) {
  11. int n=-6, m=-27;
  12. printf("%d",ab(n, m));
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5240KB
stdin
Standard input is empty
stdout
-27