Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

IO 11

 IO 11 Solution:

#include <stdio.h>

int main()

{

  float a,c;

  scanf("%f",&a);

  c=3.14*a*a;

  printf("Area of Circle=%f",c);

  printf("\nArea of Circle=%.2f",c);

return 0;
}

Post a Comment

0 Comments