Created
December 2, 2017 06:19
-
-
Save OwiseKyawMinOo/54d9f2283e31ec144a540d4bce30abe6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
void Arae(float R); | |
int main() | |
{ | |
Arae(10); | |
Arae(20); | |
getch(); | |
return 0; | |
} | |
void Arae(float R) | |
{ | |
float A; | |
A=3.14*R*R; | |
printf("Area is %f\n",A); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment