Is Visual Studio the best for creating apps in C? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Is Visual Studio the best for creating apps in C?

If not, what do you suggest?

31st May 2020, 10:07 PM
eMBee
eMBee - avatar
2 Answers
+ 3
That's hard to answer because editors are highly subjective. I personally don't like using IDEs, for me they're added complexity and often very slow, but if you find them useful then stick with it. The MSVC compiler is quite dated and MS have no plans to extend its features beyond what they can backport from their C++ compiler, so for pure C applications you're limited to a weird mix of C89 and C99 features. (C89 = No inline keyword, no designated initializers, no compound literals, no convenient way of printing sizes/addresses, no offsetof() operator or long long types, etc). If you want to make C programs in Windows, I would recommend installing GCC with MinGW/Cygwin. Or use a C subset of C++ and compile with the MSVC++ compiler.
1st Jun 2020, 12:14 AM
Gen2oo
Gen2oo - avatar
0
Gen2oo Nice answer but you got me lost in your third paragraph
1st Jun 2020, 12:17 AM
eMBee
eMBee - avatar