ADVT POST

circumference of circle c program

circumference of circle c program 


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
float pie,r,coc;
pie=3.14;
r=10;   

coc=2*pie*r;
printf("%f",coc);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.