我们在运行C程序的时候经常会遇到错误,如果你遇到了这个错误:error C2143: syntax error : missing ‘;’ before ‘}’,那麽我将帮你解决这个错误。
错误展示
完整代码
#include <stdio.h>
#define exchange(a,b){int t; t=a;a=b;b=t}
int main()
{int x = 100;int y = 200;printf("x=%d; y=%d\n",x,y);exchange(x,y);printf("x=%d; y=%d\n",x,y);return 0;
}
出现上述错误是因为我们在类的前面少了一个冒号(;),我们只需要在类的前面加上一个;就可以了。
加上 ; 之后的代码
#include <stdio.h>
#define exchange(a,b){int t; t=a;a=b;b=t;}
int main()
{int x = 100;int y = 200;printf("x=%d; y=%d\n",x,y);exchange(x,y);printf("x=%d; y=%d\n",x,y);return 0;
}
运行输出
程序已经编译完成,原来的错误信息已经消失。