c program example function prototype
c program example function prototype
 
 What would be the output of the following programs:
main( )
 {
 float area ;
 int radius = 1 ;
 area = circle ( radius ) ;
 printf ( “\n%f”, area ) ;
 }
 circle ( int r )

 
 What would be the output of the following programs:
main( )
 {
 float area ;
 int radius = 1 ;
 area = circle ( radius ) ;
 printf ( “\n%f”, area ) ;
 }
 circle ( int r )
