㈠ C语言编程软件
推荐Dev cpp 小巧,使用,适合初学者,而且完美支持win 7,自己去网上找一个看看吧。网上也有教程
还有VC 6.0 这个很古老了,不过计算机等级考试还在用他,跟Win 7不是很兼容,不过有的可以用,估计看人品了吧 呵呵
㈡ 3.C语言程序的编译环境有哪些
C语言作为一门偏底层的编程语言,历史比较悠久,编程环境其实很多,下面我简单介绍几款编程环境(软件),感兴趣的话,可以自己尝试下载一下:1.VSCode:这是微软开发的一款免费、开源、跨平台的代码编辑器,可编辑的语言多达几十种,包括常见的C/C++,Java,Python等,支持常见的语法提示、自动补全、代码高亮、Git等功能,插件扩展丰富,生态环境良好,安装相关插件和gcc编译器后,可以当做一个简单的C/C++IDE使用,轻巧灵活、方便快捷。
㈢ C语言是开源组织的语言吗
语言不存在开不开源。是否开源是指编译C/C++代码的编译器是否开源。目前只有GCC开源的。微软的c/c++编译器(vs)是不开源的。
㈣ 问个白痴问题,C语言开源吗
语言不存在开不开源。语言本身是一套(语法)标准比如"C++11",这个标准的草案网上可以下载,如果是正式版本需要付费。
是否开源是指编译C/C++代码的编译器是否开源。
目前只有GCC开源的。intel的和微软的c/c++编译器是不开源的。
㈤ c语言本身是开源的吗c语言是用什么写的
C语言是一门通用计算机编程语言,应用广泛。C语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。
尽管C语言提供了许多低级处理的功能,但仍然保持着良好跨平台的特性,以一个标准规格写出的C语言程序可在许多电脑平台上进行编译,甚至包含一些嵌入式处理器(单片机或称MCU)以及超级电脑等作业平台。
二十世纪八十年代,为了避免各开发厂商用的C语言语法产生差异,由美国国家标准局为C语言制定了一套完整的美国国家标准语法,称为ANSI C,作为C语言最初的标准。目前2011年12月8日,国际标准化组织(ISO)和国际电工委员会(IEC)发布的C11标准是C语言的第三个官方标准,也是C语言的最新标准,该标准更好的支持了汉字函数名和汉字标识符,一定程度上实现了汉字编程。
㈥ WIN8里有什么C语言编译器
你要说的编译器的话:现在比较流行的是gcc 、msvc、intel c这3种,其他的都用的比较少了。gcc是开源的,msvc是microsoft visual studio 带的,只有windows下能用,intelc 是收费的,但是对intel cpu的支持和优化是最好的。
要说IDE的话,用的多的有devcpp/c-free/eclipse/betbeans/codelite/codeblock/visual studio等,除了vs收费之外,剩下的都是免费的。win8下边能运行的,这几个都可以。不过需要注意的是:visualstudio 2012 express 不支持C/C++本地开发工具集,必须要pro或者ult版本才行。
㈦ 问个白痴问题,C语言开源吗C语言本身用什么语言编写的汇编吗
C语言一开始是由汇编写的,后来的都是由C语言(优越性)本身或C++写的,恭喜LZ答对了···
㈧ c语言本身是开源的吗,c语言是用什么写的谢谢大家了
C语言是一个由ISO组织中的ANSI制定的标准,任何个人或者组织都可以根据这个标准将其实现。现今,世界上有许多不同的C语言实现,比较着名的有:GCC、Watcom、MS C等,其中前两者是开源的,后者是闭源的。下面粘贴几个老外的回答(原回答链接)。
The C language is not a piece of software but a defined standard, so one wouldn't say that it's open-source, but rather that it's an open standard.
There are a gazillion different compilers for C however, and many of those are indeed open-source. The most notable example is GCC's C compiler, which is all under the GNU General Public License (GPL), an open-source license.
There are more options. Watcom is open-source, for instance. There is no shortage of open-source C compilers, but without a doubt the most widespread one, at least in the non-Windows world, is GCC.
For Windows, your best bet is probably Watcom or GCC by using Cygwin or MinGW.
C is a standard which specifies how C compilers should generate programs.
C itself doesn't have any source code, just like a musical note doesn't have any plastic.
Some C compilers, such as GCC, are open source.
C is just a language, and a standardised one at that, too. It pretty much is the compiler that "does all the work". Different compilers did have different dialects; before the the C99 ANSI standard, you had things like Borland C and other competing compilers, that implemented the C language in their own fantastic ways.
stdlib is just an agreed-upon collection of standard libraries that are required to be present in any ANSI C implementation.
关于C++开源与否:
与C语言类似,C++也是由ISO/ANSI制定的一个标准,所谓的“官方”并未给出确切的实现,任何组织与个人都可以根据标准自己开发一个C++编译器出来。出名的C++编译器有:GCC/G++、libc/libc++、clang(++)、 Visual studio和MS´ runtime等。也把老外的几个回答贴出来(原回答链接)。
C++ itself is only a description what the language should be,
without a definite implementation.
Anyone can make his own implementations (compiler etc, runtime library, ...)
and call it C++ if it fits to the description.
http://www.open-std.org/jtc1/sc22/wg21/
And if a implementation is open source depends on the creator.
Examples of implementation (parts):
GCC/G++, libc/libc++, clang (++ too), Visual studio and MS´ runtime...
C++ is developed by an ISO standard committee. There's also a C++ foundation that runs a web site you might want to read.
C++ itself is a language, not a specific implementation, so there's no source code available for the standard/language itself.
Some C++ implementations are open source (e.g., Gnu and Clang).
1. C++ is a code standard defined by the International Organization of Standardization (ISO). There are many different implementations of the language, but they all tend to conform to C++11. Unlike Linux or Qt, C++ is just a standard, and to use any code written in the language you'll need a compiler. The major compilers (list from Wikipedia) are LLVM Clang, GCC, Microsoft Visual C++, and the Intel C++ Compiler.
2. C++ revisions are dealt with by ISO, and are influenced primarily by the maintainers of the above four implementations.
3. Clang and GCC are both open-source, I'm sure if you poke around you can find other conforming compilers but those are the two most used.
总之,跟Java、Python和PHP这样所谓的开源语言不同,C语言与C++没有官方提供的各自确切的实现代码(库),ISO/ANSI仅仅提供了C和C++的标准。
这些都是我从自个儿博客摘抄来的,也不见得有人看得到。
㈨ c语言编译软件有哪些
6款好用的C语言编译器推荐
一些刚开始接触C语言编译的网友想下载一款C语言编译器来使用,不过,网络上有不少C语言编译器相关的软件,让人很难抉择。那么,C语言编译器哪个好?今天的文章里,小编给大家整理了6款好用的C语言编译器推荐给大家,需要C语言编译器的网友,不妨了解一下!
一、Dev-C++
Visual Studio(VS) 是一套非常完备的工具和服务,可帮助您为 Microsoft 平台和其他平台创建各种各样的应用程序。Visual Studio 还可将您所有的项目、团队和利益干系人联系在一起。现在您的团队可以从任何位置以虚拟方式进行更为敏捷的合作,无论他们采用何种开发工具。
功能介绍
可以通过强大的集成开发环境构建面向 Windows、Android、iOS 以及 Web 的出色应用。使用任何 IDE 或编辑器在云中进行版本控制、敏捷、持续交付、应用程序分析协作。
适用于所有操作系统的编辑器使用可在 Windows、OS X 或 Linux 上运行的免费代码编辑器构建和调试现代 Web 和云应用程序。