About 2,190,000 results
Open links in new tab
  1. C programming in Visual Studio - Stack Overflow

    Dec 29, 2013 · Can I use Visual Studio to learn C programming? In the new project menu I can choose between Visual Basic, Visual C#, Visual C++, Visual F# and others but I don't see "C" …

  2. How to run a C program in Visual Studio Code? - Stack Overflow

    Aug 30, 2021 · The guide for using C++ with Visual Studio Code is located here: C/C++ for Visual Studio Code If you are using the windows operating system, you can install the Microsoft …

  3. How do I set up Visual Studio Code to compile C++ code?

    Microsoft's Visual Studio Code editor is quite nice, but it has no default support for building C++ projects. How do I configure it to do this?

  4. How to compile C program in Visual Studio Code?

    Then I installed a C/C++ debugger and I saved the file on the desktop as "hello.c" and magically the syntax became higlighted. Now I would like to run the program, but can't find a way.

  5. How to compile and run C++ code in VS Code easily?

    Aug 21, 2021 · The process of using the terminal at the bottom is time consuming especially when I need to compile and run code frequently. This is also annoying when creating classes when …

  6. How can I compile and run a C# program without using Visual …

    There are different ways for this: 1. Building C# Applications Using csc.exe While it is true that you might never decide to build a large-scale application using nothing but the C# command-line …

  7. How to compile c++ file in visual studio? - Stack Overflow

    Oct 30, 2013 · 9 I am new to Visual Studio and I don't know how to compile a .cpp file. I made just a single .cpp file (ctr + n => Visual C++ => C++ file) and I tried to compile it. But in place where …

  8. How do I compile a Visual Studio project from the command-line?

    172 I'm scripting the checkout, build, distribution, test, and commit cycle for a large C++ solution that is using Monotone, CMake, Visual Studio Express 2008, and custom tests. All of the other …

  9. Is there any way to compile C++ code by pressing f5 or any other …

    Dec 13, 2020 · 5 Is there any shortcut key in vscode to compile C++ code , like vim or atom has f5 ? Press the key and you have a black dialog window . I use vscode for competitive …

  10. How to compile x64 code with Visual Studio in command line?

    I want to compile a simple hello-world-style program using the Windows command line. cl file_name.c is easy enough. Now I want to do the same thing in 64 Bit. What should I do?