J
Jason Heyes
I compile this program using Microsoft Visual C++ 6.0:
#include <cstdio>
int main()
{
std:
rintf("Hello world");
return 0;
}
It gives me the following error message:
Main.cpp
C:\Projects\Examples\Main.cpp(5): error C2653: 'std': is not a class or
namespace name
How do I stop this? Thanks.
#include <cstdio>
int main()
{
std:
return 0;
}
It gives me the following error message:
Main.cpp
C:\Projects\Examples\Main.cpp(5): error C2653: 'std': is not a class or
namespace name
How do I stop this? Thanks.