當前位置:首頁 » 編程軟體 » c編譯器下載電腦

c編譯器下載電腦

發布時間: 2024-10-30 18:31:05

『壹』 推薦一個c語言編譯器 是能在win7下運行的 謝謝 有的話發我郵箱 [email protected] 謝謝 很急 呵呵

嗯,不開發.NET framework等有專業要求程序的話,TDMGCC不錯。自己去下載,也就幾十MB,另外如果需要編輯器(IDE)的話,可以用codeblocks。

『貳』 windows怎麼安裝gnu c編譯器

Windows安裝GNU編譯器使用makefile
一、下載安裝MinGW

下載後,運行程序:mingw-get-inst-20120426.exe,選擇download latest repository catalogues. 選擇編譯器是勾選C Compiler 與C++ Compiler,點擊next進行下載及安裝。

二、設置環境變數
右擊計算機->屬性->高級系統設置->環境變數,在系統變數中找到PATH,將MinGW安裝目錄里的bin文件夾的地址添加到PATH裡面,(注意:PATH里兩個目錄之間以英文的;隔開)。打開MinGW的安裝目錄,打開bin文件夾,將mingw32-make.exe重命名為make.exe。

三、測試GCC編譯
創建一下test.c,用記事本打開該文件,將以下內容復制到文件中。

[cpp] view plain
#include<stdio.h>
#include<stdlib.h>
int main(void){
printf("Hello, world!\n");
system("pause");
return 0;
}

打開命令提示符,更改目錄到test.c的位置,鍵入
gcc -o test.exe test.c
可生成test.exe可執行文件。
四、測試makefile
新建文件夾,在文件夾內創建max_num.c、max.h、max.c、makefile四個文件。
max_num.c內容如下:

[cpp] view plain
#include <stdio.h>
#include <stdlib.h>
#include "max.h"

int main(void)
{
printf("The bigger one of 3 and 5 is %d\n", max(3, 5));
system("pause");
return 0;
}

max.h內容如下:

[cpp] view plain
int max(int a, int b);

max.c內容如下:

[cpp] view plain
#include "max.h"

int max(int a, int b)
{
return a > b ? a : b;
}

makefile內容如下:

[html] view plain
max_num.exe: max_num.o max.o
gcc -o max_num.exe max_num.o max.o

max_num.o: max_num.c max.h
gcc -c max_num.c

max.o: max.c max.h
gcc -c max.c

注意所有含有gcc的行前面是一個製表符,而非若干空格。否則可能會保存,無法編譯。

打開命令提示符,更改目錄到新建的文件夾,鍵入make,可生成指定的應運程序。
測試完成。

『叄』 c語言編譯器安裝

Win8.1下Visual Studio沒安裝過,但如果僅僅是找個C編譯器,學習C、C++語言,個人推薦DevC++軟體。


『肆』 c語言編譯器從哪裡可以下載,百度雲也可以

DEVC++要不要?

熱點內容
android朋友圈圖片 發布:2024-11-23 10:02:08 瀏覽:158
eclipsejar源碼亂碼 發布:2024-11-23 10:01:33 瀏覽:144
oracle導入資料庫數據 發布:2024-11-23 09:57:09 瀏覽:795
高訪問網址 發布:2024-11-23 09:53:02 瀏覽:519
android內置apk 發布:2024-11-23 09:46:18 瀏覽:319
郵箱伺服器搭建windows 發布:2024-11-23 09:44:46 瀏覽:559
安卓如何強制關閉 發布:2024-11-23 09:43:05 瀏覽:447
linux怎麼安裝samba伺服器 發布:2024-11-23 09:42:26 瀏覽:427
php開源建站 發布:2024-11-23 09:33:57 瀏覽:44
醫工院資料庫 發布:2024-11-23 09:29:26 瀏覽:360