Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 10-13-2004, 10:30 PM   #1 (permalink)
Junkie
 
zero2's Avatar
 
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.
zero2 is offline  
Old 10-13-2004, 10:42 PM   #2 (permalink)
Upright
 
I was under the impression that you would just compile it normally... I've always just compiled C the same way as C++ in VS.NET...
TheAgent is offline  
Old 10-14-2004, 06:54 AM   #3 (permalink)
Junkie
 
zero2's Avatar
 
Let me show you what I mean, here's a screenshot. Where can I find the build command or build icon so that I can compile this program?

zero2 is offline  
Old 10-14-2004, 07:30 AM   #4 (permalink)
I am Winter Born
 
Pragma's Avatar
 
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.
Pragma is offline  
Old 10-14-2004, 08:49 AM   #5 (permalink)
Junkie
 
zero2's Avatar
 
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?
zero2 is offline  
Old 10-14-2004, 09:22 AM   #6 (permalink)
Upright
 
Quote:
Originally Posted by zero2
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?

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
TheAgent is offline  
Old 10-14-2004, 10:00 AM   #7 (permalink)
I am Winter Born
 
Pragma's Avatar
 
Location: Alexandria, VA
The other alternative would be to run the program from the command line - and that way you can see the result without worrying about the command prompt spawning and exiting quickly.
Pragma is offline  
Old 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
ketamine is offline  
Old 10-14-2004, 02:28 PM   #9 (permalink)
Junkie
 
zero2's Avatar
 
viewing it from the command prompt works, and the getch() code works as well, however, I thought return 0; is something the sytem generates to tells the user to press any key to continue, but I guess it doesn't work with the visual studio.net
zero2 is offline  
Old 10-14-2004, 02:35 PM   #10 (permalink)
I am Winter Born
 
Pragma's Avatar
 
Location: Alexandria, VA
Return 0 doesn't ask the user to press any key to continue - it's a way of telling the shell that the program exited successfully, and that's it. The DOS command "pause" asked the user to press any key to continue.
Pragma is offline  
Old 10-14-2004, 02:47 PM   #11 (permalink)
Junkie
 
zero2's Avatar
 
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.
zero2 is offline  
Old 10-20-2004, 10:21 PM   #12 (permalink)
Crazy
 
Location: here and there
Quote:
Originally Posted by ketamine
I'm betting 99.99% of C code would compile with a C++, compiler;

Cheers!
it should since c is a proper subset of c++

try gcc to compile your c code.
theFez is offline  
 

Tags
compile, compiler, program


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 01:07 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62