4
컴파일러가 누락 된 세미콜론을보고하지 않는 이유는 무엇입니까?
이 간단한 프로그램이 있습니다. #include <stdio.h> struct S { int i; }; void swap(struct S *a, struct S *b) { struct S temp; temp = *a /* Oops, missing a semicolon here... */ *a = *b; *b = temp; } int main(void) { struct S a = { 1 }; …