<stdio.h>

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....
Then whichever function you're trying to use probably doesn't live in <cstdio>. Which function are you actually trying to use?
just void display();
does this function doesn't live in <cstdio> function????
Here is cstdio. Take a look.

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

No such function.
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.