fork download
  1. #include <stdio.h>
  2.  
  3. #define BLA 8
  4.  
  5. int main(void)
  6. {
  7. int a, b;
  8. int s = BLA;
  9. unsigned char data[1] = {0};
  10.  
  11. a = (data[0] < (unsigned char)(1 << s));
  12. b = (data[0] < (unsigned char)(1 << BLA ));
  13.  
  14. printf("%d %d\n", a, b);
  15. }
  16.  
Runtime error #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
1 0