fork download
  1. #include<stdio.h>
  2. int main(){
  3. int radius;
  4. printf("Enter the radius: ");
  5. scanf("%d",&radius);
  6. printf("Area of circle is %f having the radius %d",3.14*radius*radius, radius);
  7. return 0;
  8. }
Success #stdin #stdout 0s 5280KB
stdin
1
2
10
42
11
stdout
Enter the radius: Area of circle is 3.140000 having the radius 1