fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. float radius = 5.0;
  6.  
  7. float area = 3.14*radius*radius;
  8.  
  9. printf("Area = %g\n", area);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Area = 78.5