亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

C-source

  • c語(yǔ)言編程軟件vc6.0使用教程_vc6.0怎么用

    c語(yǔ)言編程軟件vc6.0使用教程,附件包含二個(gè)教程文件,VC++6.0培訓(xùn)教程完整版及VC6.0介紹。 Visual C++ 6.0,簡(jiǎn)稱(chēng)VC或者VC6.0,是微軟的一款C++編譯器,將“高級(jí)語(yǔ)言”翻譯為“機(jī)器語(yǔ)言(低級(jí)語(yǔ)言)”的程序。Visual C++是一個(gè)功能強(qiáng)大的可視化軟件開(kāi)發(fā)工具。自1993年Microsoft公司推出Visual C++1.0后,隨著其新版本的不斷問(wèn)世,Visual C++已成為專(zhuān)業(yè)程序員進(jìn)行軟件開(kāi)發(fā)的首選工具。雖然微軟公司推出了 Visual C++.NET(Visual C++7.0),但它的應(yīng)用有很大的局限性,只適用于Windows 2000、Windows XP和Windows NT4.0。所以實(shí)際中,更多的是以Visual C++6.0為平臺(tái)。 vc6.0使用你首先要打開(kāi)VC6.0界面,一般用得較多的是Win32控制臺(tái)應(yīng)用程序(源程序,擴(kuò)展名.cpp), 步驟是:(先工程—后文件—編譯—連接---運(yùn)行) 1,建立一個(gè)工程,“文件”——“新建”,出現(xiàn)下面界面:選擇“Win32 Console Application”(控制臺(tái)應(yīng)用程序,左邊倒數(shù)第三個(gè)),命名工程名稱(chēng),選擇保存位置。 點(diǎn)擊“確定”,進(jìn)入下一步,看到如下提示界面: 建立一個(gè)空工程,對(duì)應(yīng)其他需要的你一可以建立別的工程;點(diǎn)擊“完成”,之后 顯示你創(chuàng)建的工程的信息。 2,再在有一個(gè)的工程的條件下,我們?cè)俳⒁粋€(gè)源文件; “文件”——“新建”(快捷鍵Ctri+N),出現(xiàn): 建立源文件,選擇“C++ Source ”,一般都是建立這種文件的(適用在當(dāng)文件中適用)如果要建立頭文件的話(huà),選擇“C/C++ Header File”,(適用在多文件工程中使用)命名,文件名稱(chēng),點(diǎn)擊“確定”,之后: 進(jìn)入編輯區(qū),在主界面編寫(xiě)代碼:如下編寫(xiě)完之后呢: 可以按編譯按鈕 調(diào)試程序,看看有沒(méi)有錯(cuò)誤,有的話(huà)改正,沒(méi)有的話(huà)就可以再按連接按鈕 檢查連接(多文件工程時(shí)常用,檢查文件間是否正常連接),最后,點(diǎn)運(yùn)行按鈕 ,就可以運(yùn)行了。 如果是您有代碼如:cpp文件,或 .h 文件,想添加都VC6.0里來(lái)測(cè)試的話(huà),可以這樣做: 首先,要理解一下 文件擴(kuò)展名為:cpp和.h 文件擴(kuò)張名是.h,代表的是頭文件,一般是書(shū)寫(xiě)一些函數(shù)原型,以及一些在整個(gè)程序中常用到的結(jié)構(gòu)體,頻繁使用的函數(shù)說(shuō)明,定義等等; 文件擴(kuò)張名為,cpp的,是C++中的源文件,也是最常用到的文件,每建立一個(gè)工程都要至少一個(gè)源文件(至少要有一個(gè)函數(shù)入口——主函數(shù)main() ),包含了核心代碼; 建立與運(yùn)行說(shuō)明:(以VC 6.0編譯器為例,其他編譯器類(lèi)似) 首先,打開(kāi)VC 6.0編譯環(huán)境; 在菜單欄——文件(的下拉菜單中選擇“新建”),在彈出的選擇窗口中,選擇 Win32 Console Application(控制臺(tái)應(yīng)用程序) ,在填寫(xiě)工程名稱(chēng),選擇一個(gè)程序保存路徑, 點(diǎn)擊“完成”,查看工程信息。 在點(diǎn)擊“確定”,就建立一個(gè)簡(jiǎn)單的工程了。 再點(diǎn)擊左邊的工程信息右下角的“FileView”選項(xiàng); 可以看到你新建的工程,再雙擊你新建的工程名 可以查看工程的信息。 在雙擊工程文件,在這里是 777.files,可以看到該工程的包含的文件。 其中,Source Files 為包含所有工程的源文件 Header Files 為包含所有工程的頭文件 在源文件選項(xiàng)“Source Files ”,右鍵單擊中的“添加目錄到工程”,添加你要打開(kāi)的擴(kuò)展名為 .cpp的源文件。在頭文件選項(xiàng)“ Header Files”,右鍵單擊中的“添加目錄到工程”,添加你要打開(kāi)的擴(kuò)展名為 . h的頭文件。添加完你所有的頭文件和源文件之后,檢查一下是否添加完畢,之后就可以編譯了。 其中第一個(gè)按鈕  為編譯按鈕,可以找出工程的錯(cuò)誤信息,有錯(cuò)誤修改,沒(méi)錯(cuò)誤就可以跳到連接 ,編譯右邊的按鈕  ,即第三個(gè)按鈕(多文件工程一定要連接,查看文件是否準(zhǔn)確相連接) 當(dāng)編譯,連接都沒(méi)有錯(cuò)誤時(shí),可以按運(yùn)行按鈕  ,即可以運(yùn)行了。 相關(guān)資料:vc6.0中文綠色版下載

    標(biāo)簽: 6.0 vc c語(yǔ)言 編程軟件

    上傳時(shí)間: 2013-10-30

    上傳用戶(hù):tianjinfan

  • Source files for pxa ac97 sound driver The packet contains the files that is listed below driv

    Source files for pxa ac97 sound driver The packet contains the files that is listed below driver files /SOURCE/drivers/sound Makefile ac97.c ac97.h ac97_codec.c pxa-ac97.c pxa-audio.c pxa-audio.h sound_core.c /SOURCE/include/linux soundcard.h

    標(biāo)簽: files contains Source driver

    上傳時(shí)間: 2013-12-31

    上傳用戶(hù):qunquan

  • 人工智能中模糊邏輯算法 FuzzyLib 2.0 is a comprehensive C++ Fuzzy Logic library for constructing fuzzy logic sy

    人工智能中模糊邏輯算法 FuzzyLib 2.0 is a comprehensive C++ Fuzzy Logic library for constructing fuzzy logic systems with multi-controller support. It supports all commonly used shape functions and hedges, with full support for the various types of Aggregation, Correlation, Alphacut, Composition, Defuzzification methods. The latest version of the C++ Fuzzy Logic Class Library contains all the C++ source code and comes complete with a usage example for building a multi-controllers fuzzy logic model.

    標(biāo)簽: comprehensive constructing FuzzyLib library

    上傳時(shí)間: 2013-12-17

    上傳用戶(hù):dbs012280

  • c的快速傅立葉變換程序包

    c的快速傅立葉變換程序包,the file FFT.ZIP contains C source code for performing Discrete Fast Fourier Transforms (DFFTs) and inverse DFFTs.

    標(biāo)簽: 傅立葉變換 程序

    上傳時(shí)間: 2014-01-07

    上傳用戶(hù):Altman

  • Boost C++ Libraries 1.35.0

    Boost C++ Libraries Free peer-reviewed portable C++ source libraries Boost C++ Libraries 基本上是一個(gè)免費(fèi)的 C++ 的跨平臺(tái)函式庫(kù)集合,基本上應(yīng)該可以把它視為 C++ STL 的功能再延伸;他最大的特色在於他是一個(gè)經(jīng)過(guò)「同行評(píng)審」(peer review,可參考維基百科)、開(kāi)放原始碼的函式庫(kù),而且有許多 Boost 的函式庫(kù)是由 C++ 標(biāo)準(zhǔn)委員會(huì)的人開(kāi)發(fā)的,同時(shí)部分函式庫(kù)的功能也已經(jīng)成為 C++ TR1 (Technical Report 1,參考維基百科)、TR2、或是 C++ 0x 的標(biāo)準(zhǔn)了。 它的官方網(wǎng)站是:http://www.boost.org/,包含了 104 個(gè)不同的 library;由於他提供的函式庫(kù)非常地多,的內(nèi)容也非常地多元,根據(jù)官方的分類(lèi),大致上可以分為下面這二十類(lèi): 字串和文字處理(String and text processing) 容器(Containers) Iterators 演算法(Algorithms) Function objects and higher-order programming 泛型(Generic Programming) Template Metaprogramming Preprocessor Metaprogramming Concurrent Programming 數(shù)學(xué)與數(shù)字(Math and numerics) 正確性與測(cè)試(Correctness and testing) 資料結(jié)構(gòu)(Data structures) 影像處理(Image processing) 輸入、輸出(Input/Output) Inter-language support 記憶體(Memory) 語(yǔ)法分析(Parsing) 程式介面(Programming Interfaces) 其他雜項(xiàng) Broken compiler workarounds 其中每一個(gè)分類(lèi),又都包含了一個(gè)或多個(gè)函式庫(kù),可以說(shuō)是功能相當(dāng)豐富。

    標(biāo)簽: Boost C++ Libraries

    上傳時(shí)間: 2015-05-15

    上傳用戶(hù):fangfeng

  • Small utility which calculates the difference in hours and seconds between a starting time and finis

    Small utility which calculates the difference in hours and seconds between a starting time and finish time. Useful for calculating payroll hours, overtime, etc. with C source code. Freeware.

    標(biāo)簽: calculates difference and starting

    上傳時(shí)間: 2015-02-07

    上傳用戶(hù):jing911003

  • PIC18F1320 bootloader. This a port of the PIC16F87x bootloader to the PIC18F1320. Project includes M

    PIC18F1320 bootloader. This a port of the PIC16F87x bootloader to the PIC18F1320. Project includes Microsoft Visual C++ source for the Windows downloader, and assembly source for the PIC core. For more background documentaiton about bootloaders in general, see the PIC16F87x

    標(biāo)簽: bootloader PIC 1320 the

    上傳時(shí)間: 2015-09-01

    上傳用戶(hù):zukfu

  • he Software folder contains the following files :- 1) Sram_Interface.exe ----------> EXE Fil

    he Software folder contains the following files :- 1) Sram_Interface.exe ----------> EXE File 2) Sram_Interface.c ----------> C Source File

    標(biāo)簽: Sram_Interface following Software contains

    上傳時(shí)間: 2015-09-28

    上傳用戶(hù):遠(yuǎn)遠(yuǎn)ssad

  • DSP/BIOS Driver Developer Kit 1.11 The DSP/BIOS Driver Developer Kit (DDK) provides a selection of

    DSP/BIOS Driver Developer Kit 1.11 The DSP/BIOS Driver Developer Kit (DDK) provides a selection of pre-tested DSP/BIOS device drivers, and documentation on how to write a driver to the DSP/BIOS driver model, known as IOM. The DDK includes C source code for all drivers. The DDK 1.11 has been validated with CCS 3.1 and DSP/BIOS 5.20.

    標(biāo)簽: Developer Driver BIOS DSP

    上傳時(shí)間: 2014-11-23

    上傳用戶(hù):maizezhen

  • CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applic

    CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applications. CForms applications can run on nany type of library supported by the "curses" library. CForms uses a language-based design to define forms. An application may contain C source modules, field pictures, field definitions, literals, and events. CForms applications must be compiled with the CFC compiler and linked with the CFL linker.CForms runs on most Unix SYSV compatible platforms including SunOS, Dell-SVR4, and Diab SYSV.3. It requires a curses library and yacc or GNU Bison. CForms version 2.1 is now available as volume #402 in the CUG Library.

    標(biāo)簽: forms-driven interactive Stockholm Berntzon

    上傳時(shí)間: 2013-12-20

    上傳用戶(hù):himbly

主站蜘蛛池模板: 阜宁县| 和顺县| 南汇区| 临城县| 玉田县| 万年县| 通化县| 周口市| 清苑县| 漳平市| 卢氏县| 舒城县| 南京市| 中超| 清水河县| 酒泉市| 乐业县| 图们市| 肃北| 义乌市| 渭南市| 牡丹江市| 东乌| 永和县| 金寨县| 沙田区| 香港| 从江县| 铜川市| 乌什县| 河西区| 布尔津县| 格尔木市| 灵武市| 长汀县| 林口县| 安阳县| 灵武市| 深泽县| 仪征市| 清远市|