answersLogoWhite

0


Best Answer

You can write perfectly good C programs in C++. C programs are essentially just C++ programs that make use of the C standard libraries (and other libraries written for C) rather than making use of C++ standard libraries (and other libraries written for C++). However, non-trivial C programs are better written in C++ as the resultant code will generally be smaller and much more efficient, not to mention easier to manage.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

8mo ago

To compile and run a C# program in Visual Studio.NET, open the program file in Visual Studio. Then, click on the "Build" menu and select "Build Solution" to compile the program. Once compiled successfully, press F5 or click on the "Debug" menu and select "Start Debugging" to run the program.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a quick way to use Visual Studio.Net to compile and run a C?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you run and compile a java applet program?

One can run and compile a Java applet program by agreeing to the terms and downloading it. It is possible to get a compiler online that will compile and run Java programs.


Is overriding done at compile time or run time?

compile time


How can you compile or run the java programming?

To compile:javac MyProgram.javaTo run:java MyProgramHowever, you can also do everything (both compile and run) from within an IDE.


What is compile time and run time?

Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.


What is Commands for the compiler that are needed to compile and run your program?

javac is the command that is used to compile Java source files.


How can you say that delegates are type safe?

The type checking is done at compile time, not run time. So, if a wrong type (return or parameter) have been assigned, it will fail to compile, and the program will not run.


What video card do you need for visual studio c?

MSDN says for the video requirements. 800 X 600, 256 colors Recommended: 1024 X 768, High Color 16-bit But generally speaking if you can run windows fine then you should no problem running visual studio c. If you are creating a very graphic intensive program then you could run into some problems when you compile but to just run the IDE you are fine.


What are the steps in c plus plus?

Code, compile, link, run.


What is compile time?

Compile Time: In longer form, you might say, "at the time of compiling", or, "when the program is compiled". When you compile a program, the compiler applies various processes to your source code in order to generate the executable files. These are actions that happen "at compile time". Other actions happen when you actually run the finished program. These actions are said to occur, at, or in, "run time".


How do you run lisp programs?

You compile and link them using a lisp compiler/linker, then run the file produced.


What is run time?

"run time" is the opposite of "compile time". It refers to the time when the program is actually running.


What is the difference between run-time error and compile error?

A run-time is an error that occurs when the program is executing (running). This is where segfaults and other horrible things happen. A compile-time error is an error that occurs when you are compiling the code. This is where code syntax and semantics are checked. You want errors to only occur here.