#include

int main() {

float arr[5] = { 1,2,3,4,5 };

float* ptr1 = &arr[0];

float* ptr2 = ptr1 + 3;

printf("%d %d %d",ptr2, ptr1, ptr2 - ptr1);

}


output: 14351756 14351744 3


뭐로 치환되고 어떤 순서로 연산하면 강조한 부분이 3이 되는거죠?

이해가 딸리네요 ㅠㅠ