fork download
  1. #include<stdio.h>
  2.  
  3. inline void show1()
  4. {
  5. printf(" Function is run = 5\n");
  6. }
  7.  
  8. int main()
  9. {
  10.  
  11. show1();
  12. return 0;
  13. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
 Function is run = 5