10-13-2004, 10:30 PM | #1 (permalink) |
Junkie
|
How do you compile a C program using C++ Compiler?
Just started an intro to programming class, which focuses on C.
The instructor uses Visual Studio 6.0, C++ compiler to compile a C program, the problem is that I'm using Visual Studio.Net 2003, and I can't seem to figure out where everything is located to compile my basic C program. Can anyone tell me, what I should be looking for, or where the build command is located. |
10-14-2004, 07:30 AM | #4 (permalink) |
I am Winter Born
Location: Alexandria, VA
|
First, in VS.NET you have to create a C++ project, and then pick "Win32 Console Project"
Give it whatever name you want, then in "Application Settings", have it be a blank project. Right click "Source Files" on the Solution Explorer, and then add a New or Existing item (if you don't have a source file already, add New and save it in the same directory as where VS.NET created the project, for ease). Once you've got that created, go ahead and write your code. When you're done coding, go to the Build Menu and select "Build Solution" - then go find your application on the harddrive (should be in SOURCE_DIRECTORY\Debug\bin). The reason you don't see anything like that in the screencap you posted is because Visual Studio needs to have a solution to build - you can't just point it at a random source file on the harddrive and tell it to go compile it. Until you're working on on a file in a solution, you're just using VS.NET as a pretty colored editor. |
10-14-2004, 08:49 AM | #5 (permalink) |
Junkie
|
Thanks for the help, my professor, makes our class use programs that already work, and we use that to make changes, sort of like using a template.
So here's what I did, I created a new c++ project, then picked win32, called the file test.c (since I want it to be a c file) I next right clicked source files, and I added an existing file called asterick.c file as seen above in screenshot. I then built the solution had no errors, linked the file no errors, however, when I went to execute the program, the command prompt flashes really quick, and Im back to visual studio, with the error saying the program [3392] test.c.exe, Native has exited with code 0 (0X0). In theory the program should work, however, it's not executing, what am I doing wrong? |
10-14-2004, 09:22 AM | #6 (permalink) | |
Upright
|
Quote:
sounds like you dont have anything at the end of the program to halt the execution and wait for the user to close it... so as soon as it finishes, it closes... "Code 0" typically means that the program completed execution normally... getch(); would do the trick |
|
10-14-2004, 12:37 PM | #8 (permalink) |
Upright
Location: Boulder, Colorado
|
I'm betting 99.99% of C code would compile with a C++, compiler;
However, Visual Studio has an option to compile as C Code: Click on the "Project" menu and select "{Project Name} Properties." Expand the "C/C++" Tab, and choose "Advanced." change the "Compile As" setting to "Compile as C Code (/TC)" Cheers!
__________________
/K |
10-14-2004, 02:47 PM | #11 (permalink) |
Junkie
|
Oh ok that makes sense, about the return 0 statement.
I also found out that if you hit ctrl+F5, which turns out to be start with/out debugging(debug-->start w/out debugging), the command prompt doesn't flash by real quick. Before I was using debug-->start. |
Tags |
compile, compiler, program |
|
|