Welcome![Sign In][Sign Up]
Location:
Search - simple projects in c code

Search list

[Other resourcekeilc51chbook111111

Description: 这是一本关于Intel 80C51 以及广大的51 系列单片机的书这本书介绍给读者一些 新的技术使你的8051 工程和开发过程变得简单请注意这本书的目的可不是教你各种 8051 嵌入式系统的解决方法 为使问题讨论更加清晰在适当的地方给出了程序代码我们以讨论项目的方法来说 明每章碰到的问题所有的代码都可在附带的光盘上找到你必须熟系C 和8051 汇编因 为本书不是一本C 和汇编的指导书你可以买到不少关于ANSI C 的书最佳选择当然是Intel 的数据书可从你的芯片供应商处免费索取和随编译工具附送的手册-This is one of Intel 80C51, and the large number of the 51 book series microcontroller this book about readers some new technology to make your 8051 projects and the development process becomes simple Please note that the purpose of the book that not teach you 8051 Embedded System various solutions to the problems discussed more clearly in the right place is the code I have to discuss the method of each chapter to illustrate the problems we encounter all the code can be attached to the CD you need to find a familiar line 8051 Series C and because the book is not a compilation of C and guide books you can buy a lot of books ANSI C Of course the best option is the Intel data is available from your chip suppliers to obtain free compiler and tools attached with the hands List
Platform: | Size: 961014 | Author: lens | Hits:

[Graph program运用Visual C++完成基本数字图像处理

Description: 微软的新的.NET平台为开发者带来了许多新的诸如GDI+、Globalization之类的编程机制,同时还发明了一门全新的类似Java的编程语言-C++。对于这些新知识,我们应尽快了解、掌握并试图运用到实践项目中去,而通过实例学习的方法无疑是一个非常有效的途径。本文就通过一个简单的实例,向大家展示了在Visual C#中如何运用GDI+和Unsafe代码类等技术以实现简单的数字图像处理。 -Microsoft's new.NET platform for developers to bring as many new GDI, Globalization like programming mechanism, and also invented a new Java-like programming language-C + +. These new knowledge, we should understand, grasp and tried to apply it in practice projects, and through the example of learning is a very effective way. This paper through a simple example to illustrate the Visual C# and how to use GDI Unsafe code for such technology to achieve simple digital image processing.
Platform: | Size: 4135 | Author: 郭指挥 | Hits:

[SourceCodesdk winapi 串口实例

Description: This is the fourth in a series of articles concerning Windows SDK development that I have written over the years. The first three are: 1.Win32 SDK Data Grid View Made Easy [^] 2.Win32 SDK C Tab Control Made Easy [^] 3.Win32 SDK C Autocomplete Combobox Made Easy [^] Several years ago, I wanted to have a simple to use, message based, serial port control that I could employ in my Win32 C projects. I started experimenting with the idea and playing around with the serial port in my spare time, but as so often happens, the project ended up on the shelf when I got busy again. Recently, I came across that project and, with a better understanding of how serial port communications work on Windows, decided to finish it. Since I haven't encountered a serial port wrapper that takes this approach anywhere, I decided to publish it on The Code Project.
Platform: | Size: 32329 | Author: xmlinbo@sina.com | Hits:

[Graph program运用Visual C++完成基本数字图像处理

Description: 微软的新的.NET平台为开发者带来了许多新的诸如GDI+、Globalization之类的编程机制,同时还发明了一门全新的类似Java的编程语言-C++。对于这些新知识,我们应尽快了解、掌握并试图运用到实践项目中去,而通过实例学习的方法无疑是一个非常有效的途径。本文就通过一个简单的实例,向大家展示了在Visual C#中如何运用GDI+和Unsafe代码类等技术以实现简单的数字图像处理。 -Microsoft's new.NET platform for developers to bring as many new GDI, Globalization like programming mechanism, and also invented a new Java-like programming language-C++. These new knowledge, we should understand, grasp and tried to apply it in practice projects, and through the example of learning is a very effective way. This paper through a simple example to illustrate the Visual C# and how to use GDI Unsafe code for such technology to achieve simple digital image processing.
Platform: | Size: 4096 | Author: 郭指挥 | Hits:

[SCMkeilc51chbook111111

Description: 这是一本关于Intel 80C51 以及广大的51 系列单片机的书这本书介绍给读者一些 新的技术使你的8051 工程和开发过程变得简单请注意这本书的目的可不是教你各种 8051 嵌入式系统的解决方法 为使问题讨论更加清晰在适当的地方给出了程序代码我们以讨论项目的方法来说 明每章碰到的问题所有的代码都可在附带的光盘上找到你必须熟系C 和8051 汇编因 为本书不是一本C 和汇编的指导书你可以买到不少关于ANSI C 的书最佳选择当然是Intel 的数据书可从你的芯片供应商处免费索取和随编译工具附送的手册-This is one of Intel 80C51, and the large number of the 51 book series microcontroller this book about readers some new technology to make your 8051 projects and the development process becomes simple Please note that the purpose of the book that not teach you 8051 Embedded System various solutions to the problems discussed more clearly in the right place is the code I have to discuss the method of each chapter to illustrate the problems we encounter all the code can be attached to the CD you need to find a familiar line 8051 Series C and because the book is not a compilation of C and guide books you can buy a lot of books ANSI C Of course the best option is the Intel data is available from your chip suppliers to obtain free compiler and tools attached with the hands List
Platform: | Size: 960512 | Author: lens | Hits:

[ELanguagecmm

Description: 简单C编译器生成的目标代码是8086的汇编代码(16位),可以在一般的PC上被像MASM之类的汇编编译程序编译,生成可执行文件后,在DOS或Windows控制台下运行。 实现的语言定义如下: 语言类似于tiny语言,不支持过程调用,也就是只有一个main函数,无其他函数和全局变量 基本语句:注释语句(/*…*/),输入语句(int input(void) ),输出语句(void output(int) ),赋值语句。这里的输入输出语句实际上类似于函数调用,可以看作是本语言内部的函数 算术运算符:+、—、*、/ 数据类型:整数.-Simple C compiler generated object code is 8086 assembly code (16), the PC in general were such as MASM compilation compiler compiler to generate executable file, in DOS or Windows console run. The realization of the language are defined as follows: the language is similar to tiny language, do not support the procedure call, that is, there is only one main function, no other function and global variable basic statement: Note statement (/* ...* /), type the statement (int input (void )), the output statement (void output (int)), assignment statements. The input and output statements in fact similar to function calls, can be seen as a function of the language within the Arithmetic Operators: 2B !,-,*,/ data types: integer.
Platform: | Size: 412672 | Author: Tony | Hits:

[AI-NN-PRPatternRecognition

Description: 图象模式识别工程从简单到复杂的各个举例工程的源代码-Image pattern recognition works from simple to complex projects in all, for example source code
Platform: | Size: 14609408 | Author: 秦月 | Hits:

[Delphi/CppBuildertcp-ip-sockets-in-c-second-edition-practical-guid

Description: The Internet allows computers thousands of miles apart to exchange information through programs such as Web browsers, and nearly all of these programs gain access to network communication services through the sockets programming interface. TCP/IP Sockets in C: Practical Guide for Programmers is a quick and affordable way to gain the knowledge and skills needed to quickly develop sophisticated and powerful web-based applications. Written by two experienced networking instructors, the book s focused, tutorial-based approach enables the reader to master the tasks and techniques essential to virtually all client-server projects using sockets in C. Programming concepts are introduced through simple, real-world examples, and are accompanied by line-by-line code commentary that describes the purpose of each part of the program. The book s companion website also contains myriad employable examples of command-based source code discussed throughout the text
Platform: | Size: 791552 | Author: chane | Hits:

[Other Riddle gamesSnakepp

Description: 貪吃蛇C++代碼 C++大項目遊戲 簡單的代碼-Snake C++ code in C++ code for large projects, a simple game
Platform: | Size: 1703936 | Author: danlove | Hits:

[STLDesignPattern

Description: 正在重构几个大项目,自己也正在编写设计模式库。 覆盖20几种采用模式; 而本人是本着好用,简洁至上的原则。编写了一套易用,易懂的模式库。 该模式库会用到LOKI部分对象(和BOOST 用到STL 对象基本类似)。请注意下载LOKI。 代码完全原创,免费提供大家下载,学习,研究和使用, 参考文献:《设计模式》《C++设计新思维》《模式分析》《代码重构》 程序中所使用的英文注释,来自《设计模式》一书。 编写语言: C-Several large projects are being reconstructed, and he is being prepared by the design pattern library. Covering 20 kinds of pattern And I was in a nice, simple first principle. Prepared a set of easy to use, easy to understand the pattern library. LOKI library will use the model part of the object (and BOOST essentially similar objects used in STL). Please note that download LOKI. Code is entirely original, free to download, study, research and use References: "Design Patterns" "C++ design of the new thinking", "Mode" "code refactoring" English used in the program notes, from "Design Patterns" book. Writing language: C++
Platform: | Size: 48128 | Author: joyeep | Hits:

[ELanguagegrammar_analyse_program

Description: 一个用C++编写的简单的语法分析程序,是在词法分析的基础上进行的编写,能识别出一个句子,并返回该句子的语法信息,并返回词法分析结果。并附有源程序工程和实验报告。-Written in C++ a simple parser, lexical analysis is based on the preparation, can identify a sentence, the sentence syntax and returns the information, and returns the results of lexical analysis. Together with the source code projects and lab reports.
Platform: | Size: 309248 | Author: 淼淼 | Hits:

[Consoleemployee-record-system

Description: Mini Project in C Employee Record System. This is a very simple mini project in C Employee Record System. In this project, you can manage employee records – add, list, modify and delete records. Understanding this project will help you learn how to add, view, change and remove data using file handling. Here, you can list the employees’ record but cannot search it like in other C projects. Try modifying this project, and write your own code to implement the search function. This project is complete and totally error-free.
Platform: | Size: 11264 | Author: | Hits:

CodeBus www.codebus.net