fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. x = 0;
  6. if(x=0)
  7. printf("value of x is 0");
  8. else
  9. printf("value of x is not 0");
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
value of x is not 0