fork download
  1. main( )
  2. {
  3. int i = 45, c ;
  4. c = check ( i ) ;
  5. printf ( "\n%d", c ) ;
  6. }
  7. check ( int ch )
  8. {
  9. if ( ch >= 45 )
  10. return ( 100 ) ;
  11. else
  12. return ( 10 * 11 ) ;
  13. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
100