错误 4 错误 C3861:'snprintf':找不到标识符
我正在通过 Visual Studio 2008 在 win 7 上运行程序
,但收到此错误:
错误 4 错误 C3861:“snprintf”:找不到标识符
我已包含 stdio 标头...
我不知道还可能缺少什么
i am running a program on win 7 via visual studio 2008
and i am getting this error:
Error 4 error C3861: 'snprintf': identifier not found
i have included stdio header...
i don't know what else it can be missing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来在 Windows 上,该函数以 _ 为前缀。此外,该函数已被弃用,取而代之的是更安全的函数:
http://msdn.microsoft.com/en-us/library/2ts7cx93(v=vs.80).aspx
Looks like on Windows, the function is prefixed with a _. Also, the function is deprecated in favour of a safer one:
http://msdn.microsoft.com/en-us/library/2ts7cx93(v=vs.80).aspx