fork download
  1. const int CONSTANT_A=1;
  2. //#ifdef _OPENMP
  3.  
  4. void test(int a,int b){
  5. if(CONSTANT_A!=0){
  6. printf("%d-%d",a,b);
  7. }
  8. }
  9. //#endif
  10.  
  11. int main(){
  12. int a,b=3;
  13. test(a,b);
  14. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
0-3