\* C Program to to find the area of circle *\
# include < stdio.h >
int main( )
{
int r ;
float area ;
printf(" Enter the radious of circle : ") ;
scanf("%d ", & r) ;
area = 3.14 * r * r ;
printf("\n Area of circle : ") ;
printf(" %f ", area) ;
return ( 0 ) ;
}