C Lesson 1/50: Downloading Visual Studio

Before getting started we need a program to write code in. Visual Studio is one of the go-to IDEs for writing C, and it’s what I’ll be using for these tutorials. It’s free and easy to install.

Note that Visual Studio (which I’m recommending you use) is a different program than Visual Studio Code. Here are the steps for downloading Visual Studio:

  1. Go to Visual Studio 2022 IDE – Programming Tool for Software Developers (microsoft.com)
  2. Click the “Download” button. It will expand a dropdown menu.
  3. Click “Community 2022”. This will download an executable file for the visual studio installer.
  4. Open the executable to run the installer.
  5. Hit continue.
  6. Check off “Desktop development with C++”. The C++ option contains everything we need to write code in C or C++.
  7. Click the install button in the bottom right-hand corner of the window.
  8. Once the installation and download are done, it will ask you to sign in. Click “Skip this for now”.
  9. Select your color theme and click “Start Visual Studio”.

Now your IDE (integrated development environment) is installed and ready to use. You’re ready to start coding.

Leave a Reply

Your email address will not be published.