Horje
c program to find area of circle Code Example
c program to find area of circle
#include <stdio.h>
#define PI 3.142
int main(){
    float R, A;
    printf("Enter the radius: \n");
    scanf("%f", &R);
    A = PI * R * R;
    printf("Area is: %f\n", A);
    
}




C

Related
dynamically create matrix c Code Example dynamically create matrix c Code Example
c colour Code Example c colour Code Example
If statement that tests if a value is in range Code Example If statement that tests if a value is in range Code Example
printf signed char Code Example printf signed char Code Example
express.static public Code Example express.static public Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9