㈠ 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 和雲應用程序。