标签: c windows std
我来自Mac世界,对Windows开发来说还是一个新手。非常简单的问题:我需要在Visual Studio 2010中包含哪些库才能访问某些基本函数,如strtof()或snprintf()?为这些...... #including <stdlib.h>,<ctype.h>,<string.h>
#including <stdlib.h>
<ctype.h>
<string.h>
答案 0 :(得分:3)
MSVC不支持C99,只有一半支持旧版本的C标准。在C99中添加了snprintf和strtof,因此无法使用。
snprintf
strtof