fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int abc[6]= {1,2,3,4,5,6};
  6. int* ptrA = abc + 3;
  7. int* ptrB = ptrA - 2;
  8. int cmp = ptrB < abc;
  9. printf("%i", cmp);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4416KB
stdin
Standard input is empty
stdout
Standard output is empty