fork download
  1. #include <stdio.h>
  2.  
  3. struct meter {float x;} gravity;
  4.  
  5. struct inch {float x;} harddrive;
  6.  
  7. int main(void) {
  8. gravity.x = 9.8;
  9. harddrive.x = 3.5;
  10.  
  11. return harddrive.x/gravity.x;
  12. }
  13.  
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty