answersLogoWhite

0

Can you run c code in visual studio?

User Avatar

Anonymous

13y ago
Updated: 8/19/2019

I believe visual basic uses its own coding language. .Net if im not mistaken. A good program for writing code in c is code bloks. Just Google code blocks and they'll walk you through set up, and should give you a link to download the compiler as well.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you write a C program in visual studio 2012?

Start a new Visual C++ project then begin writing your C code.


Which language is used to develop Microsoft visual studio NET?

Microsoft Visual Studio has been written in Visual C++ and Visual C#


Is visual studio c plus plus 2010 free?

No. Visual C++ Express is free, but Visual Studio C++ must be bought. The Express edition is a subset of the Studio release.


How many languages are supported by visual studio?

Visual studio 2010 supports 5 programming languages. These are Visual Basic, Visual C#, Visual C++, Visual F# and JScript.


How do you connect java with visual studio?

Unfortunately, you can not use Visual Studio to edit Java. Visual Studio can be used to program: Visual Basic C# C++ ASP.NET Anyways to program Java you can use other programs as Eclipse for Java Developers


What services does Microsoft Visual Studio 2005 offer?

Microsoft Visual Studio 2005 offers many different services. However, it mainly allows one to code in multiple languages, C++ being the most notable of them.


What is the difference between visual studio and visual basic?

I believe visual studio is the user interface, and it not only supports visual basic but also visual c++, c#, web development etc. Visual basic, on the other hand, is a programming language.


'Download Visual Studio 6 Or Visual Basic 6 In Free?

Studio consists of C#, VisualJ, etc. Visual Basic is the predefined function of the VB6 environment. if you want to code in VB strictly, download VB6, but if you want to use C#, etc. than use VS6. But by now, I recommend upgrading to VS2008


How do i open a java file in Microsoft visual studio using the command prompt i know you would type notepad helloworld period java to open a java program in notepad but how do i do it for MVS?

You don't want to use Microsoft Visual Studio to edit/run Java programs... http://www.eclipse.org/downloads/ Use the Eclipse IDE instead... Visual Studio's only for C/C++ language programs.


Where is Microsoft Visual Studio Tools for Applications 2.0 located?

This program is located in the IDE directory of the Visual Studio directories and varies depending on the version of Visual Studio you have. One example is C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\vsta.exe


What is the difference between visual studio and visual c plus plus?

Visual Studio is a developement environment that can support many different languages like C++, j#, Basic, etc. "Visual" is added to the names because Microsoft has tweak the langauages a bit in order to integrate the .Net functionality and other features the would like to support. C++ is a stand alone languages that was incorperated into Visual Studio package.


List out theTools for calculating the running time of algorithm?

The most accurate way to determine the run time of an algorithm in C# is to use the Profiler built into the Visual Studio Team editions. If you do not have an edition of Visual Studio that includes the profiler, you can add something like this to your method: DateTime start = DateTime.Now; <Your code> DateTime stop = DateTime.Now; TimeSpan length = stopTime - startTime; length.TotalMilliseconds would be the number of milliseconds it took for your method to run.