6_5_46_ptr_relcmp.c (113B)
1 int test_main(void) { 2 int a[3] = {0}; 3 int* p = a; 4 int* q = a + 2; 5 return (p < q) + (q > p) + (p <= p); 6 }