Header Ads Widget

Responsive Advertisement

how to calculate circumference from c programming

 #include<stdio.h>

int main()

{

    float r;

    float ci;

    printf("Enter the radius of circle");

    scanf("%f",&r);

    ci=2*3.14*r;

    printf("Calculate the value of %f",ci);

    return 0;


}


Post a Comment

0 Comments