fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int number1 = 23;
  6. int number2 = 100;
  7.  
  8. printf("Output: %.2f", (double)number1 / number2);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
Output: 0.23