fork download
  1. #include <stdio.h>
  2.  
  3. #define RECORD_RAM_SIZE (-1)
  4.  
  5. #define NUM_SAVE_TABS (RECORD_RAM_SIZE / (int)sizeof(unsigned))
  6.  
  7. int main(void) {
  8. // your code goes here
  9. int x = 1;
  10. if (x > NUM_SAVE_TABS)
  11. {
  12. printf("X greater");
  13. }
  14. else
  15. {
  16. printf("X less");
  17. }
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
X greater