Welcome![Sign In][Sign Up]
Location:
Search - c i

Search list

[OtherAccelerated C++

Description: 这是Accelerated C++的配套源码,由于没有相关选项,我就将类型选为其他-This is accompanied source code of \"Accelerated C++\". I can not find proper type of this code, so I choose \"other\".
Platform: | Size: 386643 | Author: 舒海林 | Hits:

[Other resourcec++funDEMO

Description: 很好的 关于C++的例子 我想你要是可以把上面的例子都做好了 看明白了 关于函数指针这一部分你应该学的很好了 -good example of C I think if you can put the above examples can understand well on the function pointer This part you should learn a very good
Platform: | Size: 106309 | Author: 刘国伟 | Hits:

[VC/MFCC#完全手册

Description: C#在Microsoft.net初始版本中占中心位置,是Microsoft公司开发的一种最新的面向对象编程语言,它结合了C++的强大功能和Visual Basic的易用性。本书分为三部分来帮助读者学习C#语言。第一部分提供了对C#语言的全面讨论,描述了C#语言里定义的关键字、语句和特性。同时介绍了I/O、文件处理、映射和预处理程序。第二部分讨论了C#类库,它也是.NET框架类库。由于篇幅有限,本书重点讲述了包含在系统名字空间里的核心类库,这部分的内容几乎每个C#程序员都会用到。第三部分包括C#应用的实例。 本书内容由浅及深,适用范围广,同时适用于没有编程经验的读者和对C++或Java有一定基础的程序员。
Platform: | Size: 1256069 | Author: wglly123@tom.com | Hits:

[VC/MFCC/C++ 语言参考

Description: C/C++ 语言参考 基本C/C++ 预处理命令 操作符优先级 转义字符 ASCII码表 基本数据类型 关键字 标准 C 库: Standard C I/O Standard C String & Character Standard C Math Standard C Time & Date Standard C Memory Other standard C functions C++ C++ I/O C++ Strings C++ 标准模板库 C++ Bitsets C++ Double-Ended Queues C++ Lists C++ Maps C++ Multimaps C++ Multisets C++ Priority Queues C++ Queues C++ Sets C++ Stacks C++ Vectors Iterators
Platform: | Size: 118284 | Author: yusilk@126.com | Hits:

[Program docC++程序开发例题与习题

Description: 本书是一本通过编程实践引导学生掌握C++程序开发能力的教材。它可以与《C++程序开发教程》配合使用,也可以独立使用。全书共分7章;第1章主要培养学生解题时首先考虑如何定义类的习惯;第2章、第3章分别训练如何设计方法函数和数据结构;第4章进行重载与模板的有关编程训练;第5章培养学生如何通过类的派生来解决复杂问题;第6章是关于I/O流类库使用的练习;第7章是关于API和MFC编程的基本训练。 本书即有编程知识介绍,也有精选的例题,还有大量自测习题及其参考答案,可以作为教授C++程序设计课程的习题课教材,也可以供读者自学。
Platform: | Size: 6513692 | Author: rockymax | Hits:

[OtherThe C Programming Language-C语言详解英文版

Description: 这是一本讲解C语言的书,是英文编写,十分经典,是大部分公司的新职员入职之前必须要看的书籍之一,很多公司都以它作为培训教材,帮助你更快了解C语言的奥妙。 Contents l Preface l Preface to the first edition l Introduction 1. Chapter 1: A Tutorial Introduction 1. Getting Started 2. Variables and Arithmetic Expressions 3. The for statement 4. Symbolic Constants 5. Character Input and Output 1. File Copying 2. Character Counting 3. Line Counting 4. Word Counting 6. Arrays 7. Functions 8. Arguments - Call by Value 9. Character Arrays 10. External Variables and Scope 2. Chapter 2: Types, Operators and Expressions 1. Variable Names 2. Data Types and Sizes 3. Constants 4. Declarations 5. Arithmetic Operators 6. Relational and Logical Operators 7. Type Conversions 8. Increment and Decrement Operators 9. Bitwise Operators 10. Assignment Operators and Expressions 11. Conditional Expressions 12. Precedence and Order of Evaluation 3. Chapter 3: Control Flow 1. Statements and Blocks 2. If-Else 3. Else-If 4. Switch 5. Loops - While and For 6. Loops - Do-While 7. Break and Continue 8. Goto and labels 4. Chapter 4: Functions and Program Structure 1. Basics of Functions 2. Functions Returning Non-integers 3. External Variables 4. Scope Rules 5. Header Files 6. Static Variables 7. Register Variables 8. Block Structure 9. Initialization 10. Recursion 11. The C Preprocessor 1. File Inclusion 2. Macro Substitution 3. Conditional Inclusion 5. Chapter 5: Pointers and Arrays 1. Pointers and Addresses 2. Pointers and Function Arguments 3. Pointers and Arrays 4. Address Arithmetic 5. Character Pointers and Functions 6. Pointer Arrays; Pointers to Pointers 7. Multi-dimensional Arrays 8. Initialization of Pointer Arrays 9. Pointers vs. Multi-dimensional Arrays 10. Command-line Arguments 11. Pointers to Functions 12. Complicated Declarations 6. Chapter 6: Structures 1. Basics of Structures 2. Structures and Functions 3. Arrays of Structures 4. Pointers to Structures 5. Self-referential Structures 6. Table Lookup 7. Typedef 8. Unions 9. Bit-fields 7. Chapter 7: Input and Output 1. Standard Input and Output 2. Formatted Output - printf 3. Variable-length Argument Lists 4. Formatted Input - Scanf 5. File Access 6. Error Handling - Stderr and Exit 7. Line Input and Output 8. Miscellaneous Functions 1. String Operations 2. Character Class Testing and Conversion 3. Ungetc 4. Command Execution 5. Storage Management 6. Mathematical Functions 7. Random Number generation 8. Chapter 8: The UNIX System Interface 1. File Descriptors 2. Low Level I/O - Read and Write 3. Open, Creat, Close, Unlink 4. Random Access - Lseek 5. Example - An implementation of Fopen and Getc 6. Example - Listing Directories 7. Example - A Storage Allocator l Appendix A: Reference Manual 1. Introduction 2. Lexical Conventions 3. Syntax Notation 4. Meaning of Identifiers 5. Objects and Lvalues 6. Conversions 7. Expressions 8. Declarations 9. Statements 10. External Declarations 11. Scope and Linkage 12. Preprocessor 13. Grammar l Appendix B: Standard Library 1. Input and Output: 1. File Operations 2. Formatted Output 3. Formatted Input 4. Character Input and Output Functions 5. Direct Input and Output Functions 6. File Positioning Functions 7. Error Functions 2. Character Class Tests: 3. String Functions: 4. Mathematical Functions: 5. Utility Functions: 6. Diagnostics: 7. Variable Argument Lists: 8. Non-local Jumps: 9. Signals: 10. Date and Time Functions: 11. Implementation-defined Limits: and l Appendix C: Summary of Changes
Platform: | Size: 570630 | Author: wukoo0901@qq.com | Hits:

[CSharp备份数据库(C#)

Description: //取指定数据库列表 if ( txtDbName.Text =="" || txtUserName.Text == "" || txtPwd.Text == "") { MessageBox.Show("数据库,用户,密码不能为空!!", "操作错误", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else { ArrayList lst = baks.GetDbList(txtDbName.Text,txtUserName.Text,txtPwd.Text); for ( int i = 0 ; i < lst.Count; i ++ ) { lstDb.Items.Add(lst[i]); } if ( lst.Count == 0 ) { MessageBox.Show(baks.Msg(), "操作错误", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
Platform: | Size: 288752 | Author: efsoft@sohu.com | Hits:

[VC/MFCC++ Tutorial, in Beginning Visual C++ 6

Description: Welcome to the Wrox Press C++ tutorial "I hope you'll enjoy reading this tutorial with your portable, your work, or your home PC. It's a perfect companion to the Introduction to Visual C++ 6.0 Standard Edition manual and is a proven aid to understanding the C++ language. The material in this tutorial is adapted from my book Beginning Visual C++ 6.0, to provide you with a thorough grounding in 'pure' C++. I've been careful to address the new standards in C++ laid out by the ANSI and ISO committees and I encourage you to adopt these conventions so that your programs are maintainable for years to come. There's plenty of code in this tutorial, which you can cut and paste from the help viewer and is also available for download from the Wrox Press web site. We've tested this code extensively, but if you do encounter a problem, try visiting the web site, which will list any errata that may have been spotted since publication of this document. Also, remember that your suggestions for improving the text are very welcome - use the web site to give us your feedback. We try to keep all Wrox tutorials error free and appreciate your help in sustaining our high standards." Ivor Horton
Platform: | Size: 1203033 | Author: fridayya | Hits:

[VC/MFCTeach Yourself C in 21 Days

Description: Join the leagues of thousands of programmers and learn C++ from some of the best. The fifth edition of the best seller Sams Teach Yourself C++ in 21 Days, written by Jesse Liberty, a well-known C++ and C# programming manual author and Bradley L. Jones, manager for a number of high profiler developer websites, has been updated to the new ANSI/ISO C++ Standard. This is an excellent hands-on guide for the beginning programmer. Packed with examples of syntax and detailed analysis of code, fundamentals such as managing I/O, loops, arrays and creating C++ applications are all covered in the 21 easy-to-follow lessons. You will also be given access to a website that will provide you will all the source code examples developed in the book as a practice tool. C++ is the preferred language for millions of developers-make Sams Teach Yourself the preferred way to learn it!
Platform: | Size: 337908 | Author: eddieonrobot | Hits:

[VC/MFCC++ in a Nutshell.rar

Description: C++ in a Nutshell is a langauge reference manual. It is not a tutorial. It is not for beginners. It is a concise, to-the-point reference for professionals and other serious programmers. C++ in a Nutshell is not a comprehensive reference for the entire C++ language, in all its intricacies and complexities. Instead, I focus on what is most important to the working professional. If you feel that I have included too many irrelevant details or omitted too much important information, please let me know. Chapters 12 and 13 form the bulk of the book. Chapter 12 is an alphabetical reference for all the language keywords and constructs. Chapter 13 is a reference for the entire runtime library, organized alphabetically by header, and within each section, alphabetically by type, function, macro, or other name. An alphabetical reference is not always the best way to present information, though. The first 8 chapters, therefore, cover the language organized by topic. Chapters 9 through 11 introduce the standard library. Finally, the appendix includes brief introductions to some compilers, libraries, and interesting C++ projects, such as Boost and Loki.
Platform: | Size: 356783 | Author: simonhexf | Hits:

[BooksC++编程思想

Description: 好大啊~吐血啊~不过为了大家我还是传了吧~一个好的程序员和一个初级程序员的区别就在于对待同一个问题的思想的不同。所以这本书的重要性不言而喻-big ah ah ~ ~ vomit blood But to everyone I spread it to a good programmer and a junior programmer is the difference between a deal with the problem of thinking different. So this book is self-evident the importance of
Platform: | Size: 11246592 | Author: 敖雯青 | Hits:

[Documentsc 函数查询

Description: C语言函数全集(我收集的)-Complete Works of C language function (I gather)
Platform: | Size: 184320 | Author: 东风客 | Hits:

[ELanguagecompiler of c

Description: c编译器的较完整版,可是我没编译通过,大家一起来交流哦-c compiler full page, but I do not have the translation to pass, everybody exchanges together oh
Platform: | Size: 1038336 | Author: 周水斌 | Hits:

[BooksThink in C++ 2nd源代码

Description: 希望我提供的代码对大家有帮助-I hope for the code to be helpful
Platform: | Size: 428032 | Author: 张小雨 | Hits:

[Com PortVisual C++串口通信技术与工程实践

Description: 计算机接口技术系列 Visual C++串口通信技术与工程实践 在编译本章程序后,请将winio.dll、winio.vxd和winio.sys文件复制到可执行文件所在目录下, 否则WinIo库初始化函数initializeWinIO调用将会失败。-computer interface technology Series Visual C serial communications technology and engineering practice in compiling this chapter procedures, I would be grateful if winio.dll, winio.vxd winio.sys reproduction of documents and executable files to the directory, otherwise WinIo library initialization function initializeWinIO call will fail.
Platform: | Size: 264192 | Author: 张强 | Hits:

[OtherAccelerated C++

Description: 这是Accelerated C++的配套源码,由于没有相关选项,我就将类型选为其他-This is accompanied source code of "Accelerated C++". I can not find proper type of this code, so I choose "other".
Platform: | Size: 386048 | Author: 舒海林 | Hits:

[Software Engineeringi.MX53_EVK_Linux_BSP_UserGuide

Description: 飞思卡尔A9的使用手册i.MX53_EVK_Linux_BSP_UserGuide.pdf
Platform: | Size: 206848 | Author: awerwe | Hits:

[DSP programC之灵魂_指针

Description: 指针对C语言的重要性不言而喻,它是C的灵魂,我将指针和数组比作习武之人的任督二脉,如果学习C语言之人一旦将其二脉打通,那么对C语言的理解和使用就犹如内功层次的提升,跟表面的花架子将不再同一档次。(The pointer on the importance of the C language it is self-evident, it is the soul of C, I will be two big puleses compared to the pointer and array martial arts, if learning C language once the portal opened, so understanding and use of the C language is like the internal level, with the surface of the flower shelf will no longer be the same a grade.)
Platform: | Size: 83968 | Author: 222222 | Hits:

[matlabnrtps_schedule

Description: 分组调度算法中三种基本的调度算法,轮询(RR)、最大载干比(Max C/I)以及比例公平调度算法(PF)的MATLAB编程,对吞吐量、公平性以及时延性的仿真实现过程。((RR), Max C / I and MATLAB programming, the simulation of throughput, fairness and delay in the three basic scheduling algorithms, packet scheduling algorithm Implementation process.)
Platform: | Size: 3072 | Author: 寻得一份宁静 | Hits:

[BooksC语言深度解剖

Description: 关于c的一本我认为非常好的书籍,建议大家有空可以阅读一下,不管是初学者还是编程高手,都有借鉴意义。(I think it's a very good book about C. I suggest that you can read it when you have time. It's meaningful for both beginners and programmers.)
Platform: | Size: 808960 | Author: yn23 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net