Question:
how to make a C++ program using Microsoft Visual Studio 2008 ?
anonymous
1970-01-01 00:00:00 UTC
how to make a C++ program using Microsoft Visual Studio 2008 ?
Seven answers:
?
2016-12-08 17:20:00 UTC
Visual Studio 2008 Tutorials
dale
2016-08-03 03:41:45 UTC
Improve Your Running Technique Now!
jwong71091
2010-10-10 16:08:10 UTC
If you like to know how to use Microsoft Visual Studio to create, compile, and run C++ programs then you want to go to the xoax.net website which shows how to download the free Microsoft's version of their Integrated Development Environment (IDE) Visual C++ Express and use it to create C++ programs





It also includes many video tutorials and other other information for learning C++ and Visual C++ :





http://xoax.net/info/sitemap.php







Here are some other resources you may find helpful for learning C++ programming and Visual C++





You can use the search engine Google.com to find free tutorials, forums and other information





Visual C++ tutorial

http://www.google.com/search?hl=en&source=hp&q=Visual+C%2B%2B+tutorial&btnG=Google+Search&aq=f&aqi=&aql=&oq=&gs_rfai=





There are many online forums for C++ programming and etc...whenever you need advice or information for these programming languages then you should go to one of these forums because they are experts in C++ and they can really be helpful



C++ forum

http://www.google.com/search?hl=en&q=C%2B%2B+++++forum&aq=f&aqi=g5&aql=&oq=









3DBuzz has many good videos for C++ and other programming languages

http://www.3dbuzz.com/vbforum/sv_videonav.php?fid=604ff0722617bab6dd7f47a9febabbac







The websites CPlusPlus, FunctionX and Programmingtutorials have many free tutorials for learning about C++, Excel and Access, Java, Visual Basic, and etc.



http://www.cplusplus.com/doc/tutorial/



http://www.functionx.com/



www.programmingtutorials.com







YouTube has videos for almost any subject or topic you can think of



C++

http://www.youtube.com/results?search_query=C%2B%2B&search_type=&aq=f





Good luck and I hope you will this useful for learning C++ programming!
tbshmkr
2010-10-10 10:32:49 UTC
Use CodeBlocks

=

NO tutorial necessary

-

Code::Blocks == Open Source C/C++ IDE

- - codeblocks-10.05mingw-setup.exe

- http://www.codeblocks.org/downloads/binaries

-

MS Visual Studio 2008 has many tutorials [videos] for sale.

- http://searchwindevelopment.techtarget.com/tutorial/Visual-Studio-2008-Learning-Guide-Tips-and-Tutorials
GuyOnEarth
2010-10-10 10:30:58 UTC
You're not going to learn that here. Read your manual and help files for VS.
anonymous
2010-10-10 10:30:29 UTC
Step 1 - learn computer programming http://www-old.oberon.ethz.ch/WirthPubl/AD.pdf



You can't learn programming by learning a programming language.
GZ
2010-10-10 10:31:51 UTC
Visual C++ doesn't allow you to compile a C++ file, an entire project is required. I'm typing this up from Mac OS X, so I'm unable to look at the interface currently, I'll be trying to give you instructions from memory.



When you have opened Visual C++, press Control+Shift+N. This will bring up the New Project wizard. The first thing you should see is a window with a bunch of options, click through them until you see Win32 Console Application (or just Console Application) and select it. You'll then have to enter a project name in the field on the bottom. Below that will be the location in which the project folder will be made. By default it should be something along the lines of /Documents/Visual Studio 2008/Projects/. The location in which you put the files is up to you, it's a matter of preference.



Pressing Next should bring up another window, do not hit Finish just yet. Click Next, and if you see the option for Pre-Compiled headers checked, uncheck it. Make sure that Empty Project is checked and Console Application is the option selected. Press Finish and you'll be given a Visual C++ project with Console set as its subsystem. On the left is the File Browser. You should see a folder named Source. Right click it, select Add, and then select New File. Create a CPP file and call it whatever you want. In this CPP file you can put your int main(), #include , etc.



For in the future, header files that you make for your project should go under Header, obviously. But including a header file from within your own project is done using #include "file.h", rather than using the usual <>.



Again, this is all from memory, chances are that this won't be entirely accurate. In the case that one of my steps don't match up with what you see, just guess at the next step.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...