fork download
  1. #include <stdio.h>
  2.  
  3. main( )
  4. {
  5. int i = 20 ;
  6. display ( i ) ;
  7. }
  8. display ( int i )
  9. {
  10. int k = 35 ;
  11. printf ( "\n%d", i) ;
  12. printf ( "\n%d",k);
  13. }
  14.  
Success #stdin #stdout 0s 4544KB
stdin
Standard input is empty
stdout
20
35