Command Line Program to find Area of Circle
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.