首页 > 代码库 > 一个关于调用函数函参写void的错误error C2143 syntax error missing ')' before 'type'

一个关于调用函数函参写void的错误error C2143 syntax error missing ')' before 'type'

error C2143 syntax error missing ‘)‘ before ‘type‘

错误代码:
srand((unsigned)clock(void));

错误原因:

画蛇添足的写了void

修改:

把void去掉即可

总结:

void代表空,就是实实在在的什么都没有,除非是在声明,否则平常用的时候就是空。

一个关于调用函数函参写void的错误error C2143 syntax error missing ')' before 'type'