本文介绍了哪个C工具?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我有一份Visual Studio 2005和Borland Delphi的副本,但是我在
的损失找到了我可以开始的地方代码C应用程序,他们都给我

选项在C ++中工作但是当我处理嵌入式系统和

PIC设备我不能使用它。 />

有没有人知道我是否可以获得Visual Studio,我认为它比使用C或者使用C更好或者没有使用什么是最好的C编程

工具?


谢谢,


JB

Hi

I have a copy of Visual Studio 2005 and Borland Delphi but I''m at a
loss to find where I can start to code C applications, they all give me
options to work in C++ but as I am dealing with embedded systems and
PIC devices I can''t use it.

Does anyone know if I can get Visual Studio, I think its better than
Borland, to work with C or failing that what is the best C programing
tool?

Thanks,

JB

推荐答案



我建议用vim编程。其他人可能更喜欢emacs。他们都是优秀的编辑,他们应该满足你的需求。

I suggest programming with vim. Other people may prefer emacs. They are
both great editors and they should suit your needs.




我建议用vim编程。其他人可能更喜欢emacs。他们

都是优秀的编辑,他们应该适合您的需求。


I suggest programming with vim. Other people may prefer emacs. They
are both great editors and they should suit your needs.



听起来你在Windows工作。如果你正在寻找一个IDE,我建议GVim为

编辑或DevC ++。


==

Adam Shea

It sounds like you''re working in Windows. I''d suggest either GVim for
an editor or DevC++ if you''re looking for an IDE.

==
Adam Shea




您可能需要特定于您的设备或PIC的东西。例如。 MicroChip

为他们的PIC系列提供了自己的C编译器,并且还有第三方

编译器特定于某些设备。


根据您正在做的事情,您可以使用Visual Studio -

以.c(非.cc或.cpp)结尾的文件默认编译为C

代码,或者您可以逐个文件或逐个项目设置设置为
编译为C而不是C ++(在C / C ++ Advanced下)。要为嵌入式设备写东西

,您可能需要下载

支持WinCE的扩展程序,可以通过Google搜索找到。


Michael

You may need something specific to your device or PIC. E.g. MicroChip
has their own C compiler for their PIC line, and there are third party
compilers specific to certain devices as well.

Depending on what you''re doing, you may be able to use Visual Studio -
files that end in .c (not .cc or .cpp) are by default compiled as C
code, or you can set file-by-file or project-by-project settings to
compile as C instead of as C++ (under C/C++ Advanced). To write stuff
for an embedded device, you may need to download extensions that
support WinCE, which can be found by googling.

Michael


这篇关于哪个C工具?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 05:29