fork download
  1. #include <stdio.h>
  2. int array[]={1,2,3,4,5,6,7,8};
  3. #define SIZE (sizeof(array)/sizeof(int))
  4.  
  5. int main(void) {
  6. if(-1<=SIZE) printf("1");
  7. else printf("2");
  8. return 0;
  9. }
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
2