Write a C program to find the area of a circle with radius provided.
The value of radius positive integer passed to the program as the first
command line parameter. Write the output to stdout formatted as a floating
point number rounded to EXACTLY 2 decimal precision WITHOUT any other
additional text.
Scientific format(such as 1.00E+5) should NOT be used while printing the
output.
You may assume that the inputs will be such that the output will not exceed
the largest possible real number that can be stored in a float type variable.
Note You can submit your code in C_C++_Python_Java_JS_Php
May-17-2021 19:28:16
#include
May-17-2021 20:27:57
r=int(input("enter the number:")) value=(3.142*r*r) print("Area is",value) print("the round of area to two digits",(round(value,3)))
May-19-2021 11:09:01
#include
May-19-2021 19:38:55
May-17-2021 19:29:28
April-05-2021 22:10:41
April-04-2021 21:28:51
April-03-2021 21:47:41