Hi,
I’m often using PHP to make websites. When I want to design the website I use HTML and CSS. But, now I want to make an easy program. How do I make the design?
Ruud
I do know about the structure of C++ and variables and stuff. That’s a lot like PHP. But for design in PHP you simply make PHP print out html code. How can I make the design in C++?




You first need a compiler. I recommend Visual C++ express which you can download for free from microsoft website.
The first thing you wanna learn is the structure of a simple program with the Hello world program.
#include // include the library files
using namespace std;//
void main()
{
cout << “Hello World!” << endl; cout << “Welcome to C++ Programming” << endl;//send text to output stream(console window)
}
You can find countless examples in C++ online.
If you want to learn C++(Tell me if i am wrong Then the guy i learnt from is the most amazing teacher i have had, i now know C++ and i am onto making games, here is the link to his videos
http://www.youtube.com/user/antiRTFM#play/all/1D10C030FDCE7CE0-all/0/tyVhn0FWWB4
Have fun and good luck :)