报错
main.c(242): warning C206: 'sprintf': missing function-prototype
main.c(242): error C267: 'sprintf': requires ANSI-style prototype
原因
未导入stdio.h
头文件
#include <stdio.h>
导入即可
总之,遇到missing function-prototype
和requires ANSI-style prototype
编译报错,首先想想需要的头文件有没有导入,或者说有没有正常导入。
比如还有一种情况是导入的头文件中有地方定义冲突了也会导致这样的问题。
Comments | NOTHING