error C2143 syntax error missing ')' before 'type'

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

错误原因:

画蛇添足的写了void

修改:

把void去掉即可

总结:

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