fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a = 500, b = 100, c;
  5. if(!a >= 400)
  6. b = 300;
  7. c = 200;
  8. printf("b = %d c = %d", b, c);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5428KB
stdin
Standard input is empty
stdout
b = 100 c = 200