Visual Studio 上的 C

2022-01-17 00:00:00 c ide compiler-construction c++

我正在尝试学习 C.作为 C# 开发人员,我的 IDE 是 Visual Studio.我听说这是 C/C++ 开发的好环境.然而,似乎无论我尝试做什么小事,直觉都失败了.有人可以提供很好的资源来说明如何:

I'm trying to learn C. As a C# developer, my IDE is Visual Studio. I've heard this is a good environment for C/C++ development. However, it seems no matter what little thing I try to do, intuition fails me. Can someone give good resources for how to either:

  • 在 Visual Studio 中了解 C 的来龙去脉
  • 推荐一个更好的 C IDE + 编译器

另见:https://stackoverflow.com/questions/951516/a-good-c-ide

推荐答案

回答纯粹的主题问题给我推荐一个更好的 C IDE 和编译器"我发现 Ming32w 和 Code::blocks(现在带有组合安装程序) 在 Windows 上非常有用,但 YMMV 因为您显然已经习惯了 MS IDE 并且只是在与 C 作斗争.

Answering the purely subject question "recommend me a better C IDE and compiler" I find Ming32w and Code::blocks (now with combined installer) very useful on windows but YMMV as you are obviously used to the MS IDE and are just struggling with C.

我建议您在尝试将其与 Windows UI 结合在一起之前先专注于控制台应用程序以了解该语言,根据我的经验,这是 Windows 开发中最难的部分.

May I suggest you concentrate on console applications to get a feel for the language first before you attempt to tie it together with a windows UI which in my experience is the hardest bit of windows development.

相关文章