thanks and can you answer me on this question ?? please :
What the target from writing : ( using namespace std; ) and I want to know a link for the books who are talk about the graphical designing in c++ I mean the forms and the controls because I don't love console projects
If u put <iostream.h> you w0nt be needed the std: ... Ex. Putting c0ut using iostream
std::cout<<"hello world";
In iostream.h
cout<<"hello world"; getz?
I want to know links for the books who are talk about the graphical designing in c++ I mean the forms and the controls because I don't love console projects please
I want to know links for the books who are talk about the graphical designing in c++ I mean the forms and the controls because I don't love console projects please
They have online tutorials, the API is pretty well documented, there's a forum for help, and there are even books for sale.
Some would say that jumping into GUI programming without first having a firm understanding of C++ basics is a recipe for disaster. I think that's hogwash, though... I didn't have any trouble using MFC when I first started.
If you use only the standard library there's nothing wrong in usingnamespace std;,
If you are using multiple libraries but you have to use a symbol really often, using a_namespace::symbol; is better than typing a_namespace::symbol every time