fork download
  1. #include <stdio.h>
  2.  
  3. inline int foo ( int x , int y ) {
  4. return x * y ;
  5. }
  6.  
  7. int main(void) {
  8. printf ( "%d" , foo ( 10 , 5 ) ) ;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
50