最佳答案
我有个简单的程序:
#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 };
struct S b = { 2 };
swap(&a, &b);
}
正如我们看到的 例如: ideone.com给出了一个错误:
prog.c: In function 'swap': prog.c:12:5: error: invalid operands to binary * (have 'struct S' and 'struct S *') *a = *b; ^
为什么编译器不检测丢失的分号?
注意: 这个问题及其答案是由 这个问题激发的。虽然有类似的 其他问题,我没有发现任何提到 C 语言的自由形式的能力,这是什么导致这个和相关的错误。