fork(1) 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 5288KB
stdin
4
stdout
Enter the radius: Area of circle is 50.240000 having the radius 4