Can I use cstdio in a C program?
Posted
by Tommy
on Stack Overflow
See other posts from Stack Overflow
or by Tommy
Published on 2010-05-12T00:37:37Z
Indexed on
2010/05/12
0:44 UTC
Read the original article
Hit count: 245
Can I use cstdio in a C program?
I get a ton of errors in cstdio when I add the #include <cstdio>
to the C program.
c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\cstdio(17) : error C2143: syntax error : missing '{' before ':'
c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\cstdio(17) : error C2059: syntax error : ':'
Thanks
EDIT - I would like to use snprintf, which is why I am trying to include this.
© Stack Overflow or respective owner