fork download
  1. #include <stdio.h>
  2.  
  3. static const int N = 1000;
  4. static const int V = N? 1:0;
  5. int N2 =100;
  6. int V2 = N2? 1:0;
  7.  
  8. int main(){
  9. printf("%d\n",V);
  10. printf("%d\n",V2);
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 2724KB
stdin
Standard input is empty
stdout
1
1