我有这个简单的程序:
#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 语言的自由格式能力,这是导致此错误和相关错误的原因。