c program example of function and value pass to function
c program example of function and value pass to function
![]()
c program example function and value pass to function 2
main( )
 {
 int i = 45, c ;
 c = multiply ( i * 1000 ) ;
 printf ( “\n%d”, c ) ;
 }
 check ( int ch )
 {
 if ( ch >= 40000 )
 return ( ch / 10 ) ;
 else
 return ( 10 ) ;
 }