VISUAL STUDIO 2022 COMMUNITY EDITION

I"m trying khổng lồ run c code on my windows. (I had been running it so far on repl.it). But it is proving harder than it is supposed khổng lồ be.MinGW is not installing due lớn some reason. & I"ve spent a lot of time trying to lớn run it some other way. From my research, I think the best way to lớn go about it is to tải về Visual Studio, but I have a low-end PC & I don"t think I should install Visual Studio. Can I, somehow, only install the C/C++ compiler that comes with it without installing Visual Studio itself.

Bạn đang xem: Visual studio 2022 community edition

If it helps, I usually run my (python) code in atom, but also have Visual Studio Code installed on my machine.

I apologize if my question is stupid, I am a self-taught programmer who learned to code from MIT"s 6.00.1x & 6.00.2x và am currently trying khổng lồ learn C from "The C Programming Language" by Kernighan và Ritchie. I"ve never formally studied computer science.


c visual-studio
giới thiệu
Improve this question
Follow
asked Mar 3, 2018 at 21:35
*

HuzaifaHuzaifa
45211 gold badge55 silver badges1919 bronze badges
7
| Show 2 more comments

2 Answers 2


Sorted by: Reset to mặc định
Highest score (default) Date modified (newest first) Date created (oldest first)
10
What you want is called the "Windows SDK", wich contains everything you need to lớn build applications on windows, except the IDE (Visual Studio).

Xem thêm: Cách Tải App Trung Trên Android Và Iphone, Tải App Edit Trung Quốc 剪映 Đơn Giản Trên Android

It comes with all necessary libraries, header files, a compiler, nmake et cetera, & a handy shortcut for a preconfigured cmd.exe that puts all of these tools in your PATH. If you know what you are doing, this is what you want to lớn use.

What version of the SDK you want depends on the system you are compiling on, but you will find all of them on the microsoft website. For windows 10 for example, the SDK can be found here: https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk

Be aware though, that the windows compiler cl.exe can be a bit tricky at times, và nmake is not what you expect when you only learned GNUmake. If you are only starting out learning C, then I would not recommend using the SDK for the reasons given in the comments khổng lồ your question. However, if all you want is compile on windows, without having lớn drag 20+ Gigabytes of IDE around, then the SDK is an option to lớn consider.

(We are using virtual machines with a preinstalled windows SDK quite successfully in lectures và exercises.)

UPDATE:

I have been made aware that as of windows 8 the SDK no longer contains the build tools for C++ based applications. These are now only contained in a Visual Studio installation.