fork download
  1. #include <stdio.h>
  2.  
  3. typedef int (*MainPtr_t)( void );
  4.  
  5. int main( void )
  6. {
  7. static int a = 0;
  8. MainPtr_t Test = (MainPtr_t)0x8048450;
  9.  
  10.  
  11. if ( 5 > a )
  12. {
  13. printf( "%d\n",
  14. a++ );
  15. Test();
  16. }
  17.  
  18.  
  19. return 0;
  20. }
  21.  
Runtime error #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
Standard output is empty