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 )
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 )
c program example function and value pass to function main( ) { printf ( “\nOnly stupids use C?” ) ; display( ) ; } display( ) { printf ( “\nFools too use C!” ) ; main( ) ; }