fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.  
  5. int r = 6 ;
  6. printf("the area of circle with radius %d is %f ",r, 3.14*r*r );
  7.  
  8. return 0;
  9. }
  10.  
  11.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
the area of circle with radius 6 is 113.040000