第一行中函数名称之前的预期标识符

时间:2018-11-06 15:26:54

标签: c gcc compiler-errors expected-exception

我有一个代码:

void switch (int *a, int *b) 
{
    int temp = *a;
    *a = *b;
    *b = temp;
}

这是我通过这个.h文件包含在其他.c文件中的功能:

#ifndef SWITCHINT_H
#define SWITCHINT_H

void switch (int *a, int *b);

#endif

但是控制台会显示以下内容:

switchInt.c:1:5: error: expected identifier or ‘(’ before ‘switch’
 void switch (int *a, int *b);s
switchInt.h:4:6: error: expected identifier or ‘(’ before ‘switch’
 void switch (int *a, int *b);

我该怎么办?

1 个答案:

答案 0 :(得分:0)

由于函数的名称reserved(“开关”)而发生错误

感谢Fiddling Bits的帮助!

P.S:对不起,我很抱歉:(