Skip to content

Instantly share code, notes, and snippets.

@OwiseKyawMinOo
Created December 2, 2017 06:19
Show Gist options
  • Save OwiseKyawMinOo/54d9f2283e31ec144a540d4bce30abe6 to your computer and use it in GitHub Desktop.
Save OwiseKyawMinOo/54d9f2283e31ec144a540d4bce30abe6 to your computer and use it in GitHub Desktop.
#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