fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x,y,min;
  6. min=x;
  7. if(y<x)
  8. min=y;
  9. printf("min=%d\n",min);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5300KB
stdin
Standard input is empty
stdout
min=0