<stdio.h>

Dec 5, 2011 at 3:36pm
can some please tell me if there is a new version for this function??? i cannot execute my program using this functions.....i also try #include<cstdio> but still cannot execute....
Dec 5, 2011 at 3:45pm
Then whichever function you're trying to use probably doesn't live in <cstdio>. Which function are you actually trying to use?
Dec 5, 2011 at 3:57pm
just void display();
does this function doesn't live in <cstdio> function????
Dec 5, 2011 at 4:05pm
Here is cstdio. Take a look.

http://cplusplus.com/reference/clibrary/cstdio/

No such function.
Dec 5, 2011 at 4:07pm
Or you are not specifying the namespace.

1
2
3
using std::printf;
// ...
printf("=D");

or

 
std::printf("=D");

But there are probably better things to use instead of the functions in this header.
Topic archived. No new replies allowed.