fork download
  1. #include <stdio.h>
  2.  
  3. typedef int BOOL;
  4. #define FALSE ( 0 )
  5. #define TRUE ( 1 )
  6.  
  7. BOOL test;
  8.  
  9. int main( void )
  10. {
  11. // your code goes here
  12. printf( "%d\n", test );
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
0