C는 (...)의 크기와 ...의 크기를 올바르게 처리합니까?이 경우에는? 다음 코드에서 기능은test그리고.test2동등한? typedef int rofl; void test(void) { rofl * rofl = malloc(sizeof(rofl)); // Is the final rofl here the TYPE? } void test2(void) { rofl * rofl = malloc(sizeof *rofl); // Is the final rofl here the VARIABLE? } 즉, 한다rofl인에sizeof(rofl)정확하게 고릅니다.rofl 괄호 때문에 타자를 치나요? 한다rofl인에sizeof *rofl정확하게 고릅니다.rofl 괄호가 부족해서 변수가 생긴 건가요? 참고: 이것은 우습..