English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have Microsoft's visual c++ 6 installed in my computer. Could some one help me to understand how I can write a code and convert into binary. I am not asking for the code but for the procedure. I want step by step procedure like which command to start with a new project? After typing in the code how to compile ? How to pre process before compiling, Then how to save the binary file at the last. I feel a bit lost with the many software options.

2007-09-04 04:00:49 · 2 answers · asked by PETER 3 in Computers & Internet Programming & Design

2 answers

No worry!
1) Go to file menu->New --> Project (click here)
2)A popup window will open --- Select General -> Empty Project

3) Enter a name in the text-field provided below (say test)
4) Press OK.
5) In the Left side bar , you will see "source files" (project explorer) in a folder view
6) Right click on it --> Add--> New Item--> select code... type a file name , abc

7) press OK

8) write the following code in the file-->

//Begin of the code

#include
using namespace std;
int main(){
cout<<"Hello from jadu";
return 0;
}

//End of the code

8) Press Ctrl +S or press the save button

9) F7

10) Ctrl + F5 or press run

thats it...

2007-09-04 04:27:42 · answer #1 · answered by Anonymous · 0 0

Start here

2007-09-04 04:24:07 · answer #2 · answered by AnalProgrammer 7 · 0 0

fedest.com, questions and answers