hi, i'm using visual c++ express 2008.
i have built a project called helloworld.
under this project i created a source file, it contains code which writes "hello" on screen.
then, i created another source file under the same project, which adds 2 integers and displays on screen.
when i try to run the second program, it runs the first program.
how do i run the second program???
On the solution explorer, right click on the newer project > Set as StartUp Project.
It's always better to run programs from the console, though. Don't start the debugger needlessly.
helios, i didn't create another project. i created another source file under the same project. when i am on the new source code window, i press the "start without debugging" button, but it runs the first source code. how do i get the second source code run?