1) Read the last posts by redhead and me, here:
http://codenewbie.com/forum/t2184.html
a) Yes.
2) That's a commercial and outdated IDE with RAD capabilities.
3) See below.
4) Since you have XP: Drag the *.exe to the console. Once above the console realease it. Press enter. See what happens.
5) The "\n" is the newline escape code. Basically it prints a newline.
The "0" is optional. Basically it is a good idea to let the application return a value to check wether an app terminated successfully. The most tangible reason on short notice is compatibilty. Besides, returning an exit status is the
only defined way according to the ANSI/ISO standards. I wouldn't worry about it in this stage.
Learn from:
http://www.cplusplus.com/doc/tutorial/
The
style is heavily outdated. Keep in mind that STL is common (nothing special anymore) in modern C++ coding. Remind me of this remark when you reach arrays.
Feel free to post anytime,
Val