找不到我的语法错误,VC ++说有一个

时间:2010-02-12 12:50:27

标签: c visual-c++ function-pointers syntax-error

我在这里遇到了一些问题,我正在搞乱机器代码和函数指针,还有一些我的代码,VC ++只是拒绝编译。

这完全按预期编译和运行:

#include <stdlib.h>
#include <stdio.h>

int main()
{
    char tarr[] = {0xb8, 222, 0, 0, 0, 0xc3};

    int (*testfn)() = tarr;

    printf("%d", testfn()); // prints 222

    getchar();
}

但是,Visual C ++ Express 将不会编译以下内容,从而出现此错误:error C2143: syntax error : missing ';' before 'type'

#include <stdlib.h>
#include <stdio.h>

int main()
{
    char* tarr = (char*) malloc(1000);
    tarr[0] = 0xb8;
    tarr[1] = 222;
    tarr[2] = 0;
    tarr[3] = 0;
    tarr[4] = 0;
    tarr[5] = 0xc3;

    int (*testfn)() = tarr; // syntax error here

    printf("%d", testfn());

    getchar();
}

我查看了所谓的错误代码,我看不出它有什么问题。这是怎么回事?有什么我想念的吗?

2 个答案:

答案 0 :(得分:2)

这是C代码吗?如果是这样,并且它不是C99那么你需要将testfd的声明移到tarr [X]的赋值之前。

答案 1 :(得分:1)

代码在GCC中编译警告,无法用G ++编译。你错过了那条线上的演员阵容。你也错过了main的返回值。

    int (*testfn)() = (int (*)()) tarr; // no more syntax error?