| C++ GUI Programming with Qt 3 Straight from Trolltech, this book covers all you need to build industrial-strength applications with Qt 3.2.x and C++--applications that run natively on Windows, Linux/Unix, Mac OS X, and embedded Linux with no source code changes! The book teaches solid Qt programming practices; it is not a rehash of the documentation. You'll find start-to-finish coverage packed with examples, plus a CD with the Qt 3.2 toolset and Borland C++ compilers--including a non-commercial Qt 3.2 for Windows available nowhere else! http://www.best
ebooksworld.com/ebook/1209
C++ Reference Guide Extensive guide on using Standard Template Library. http://www.bestebooksworld.com/ebook/1210
ZooLib Cookbook ZooLib is a cross-platform application framework. What it allows you to do is to write a single set of C++ sources and compile for different operating systems and microprocessors to produce native executable applications with very little need for platform-specific client code. This is of great benefit to a developer, as it allows you to support your application on a variety of platforms
without a lot of extra work developing parallel codebases. It also allows you to spend the bulk of your time developing on whatever platform you enjoy the most while delivering for the platforms your users need, even if they're not the same. http://www.bestebooksworld.com/ebook/1211
Reusable Software Components This book introduces you to new and useful techniques of programming microcontrollers with the high level language C. The concept of reusable components evolved from research aimed at object oriented programming for microcontrollers in C. It was found that classes written in C can be packaged as components for easy reuse and modification needed to extend their capability. In this book you will learn how to create classe
s in
C. Instances of these classes are objects, and within the limites of the microcontroller and other peripherals, as many instances of these objects as are needed can be created. We call these classes components. Such software components have advantages over the corresponding hardware components. In the construction of components, we can apply the concepts of inheritance and polymorphism. Inheritance allows extension of the basic component to meet new requirements without modification of the basic class code. Polymorphism, or late bindig, permits the program to select one of several alternative functions or methods, the choice of which to execute cannot be determined until run time. It will be found that careful application of polymorphism can allow a savings of program code. http://www.bestebooksworld.com/ebook/1212
C++ in action My work at Microsoft gave me the unique experience of working on large software projects and applying and developing state of the art design and programming methodologies. Of course, there are plenty of books on the market that talk about design, programming paradigms, languages, etc. Unfortunately most of them are either written in a dry academic style and are quite obsolete, or they are hastily put together to catch the latest vogue. There is a glut of books teaching programming in C, C++ and, more recently, in Java. They teach the language, all right, but rarely do they teach programming. http://www.bestebooksworld.com/ebook/1213
Optimizing
C++; Optimizing C++ provides working programmers and those who intend to be working programmers with a practical, real-world approach to program optimization. Many of the optimization techniques presented are derived from my reading of academic journals that are, sadly, little known in the programming community. This book also draws on my nearly 30 years of experience as a programmer in diverse fields of application, during which I have become increasingly concerned about the amount of effort spent in reinventing optimization techniques rather than applying those already developed. http://www.bestebooksworld.com/ebook/1214
Who's Afraid of C++? Whether you are using this book on your own or in school, t
here are many good
reasons to learn how to program. You may have a problem that hasn't been solved by commercial software; you may want a better understanding of how commercial programs function so you can figure out how to get around their shortcomings and peculiarities; or perhaps you're just curious about how computers perform their seemingly magical feats. Whatever the initial reason, I hope you come to appreciate the great creative possibilities opened up by this most ubiquitous of modern inventions. http://www.bestebooksworld.com/ebook/1215
Teach Yourself C++ in 21 Days Computer languages have undergone dramatic evolution since the first electronic computers were built to assist in telemetry calculations during World War II. Early on, p
rogrammers
worked with the most primitive computer instructions: machine language. These instructions were represented by long strings of ones and zeroes. Soon, assemblers were invented to map machine instructions to human-readable and -manageable mnemonics, such as ADD and MOV. In time, higher-level languages evolved, such as BASIC and COBOL. These languages let people work with something approximating words and sentences, such as Let I = 100. These instructions were translated back into machine language by interpreters and compilers. An interpreter translates a program as it reads it, turning the program instructions, or code, directly into actions. A compiler translates the code into an intermediary form. This step is called compiling, and produces an object file. The compiler then invokes a linker, which turns the object file into an executable program. Because interpreters read the code as it is written and execute the code on the spot, interpreters are easy for
the programmer to work with. Compilers, however, introduce the extra steps of compiling and linking the code, which is inconvenient. Compilers produce a program that is very fast each time it is run. However, the time-consuming task of translating the source code into machine language has already been accomplished. Another advantage of many compiled languages like C++ is that you can distribute the executable program to people who don't have the compiler. With an interpretive language, you must have the language to run the program. http://www.bestebooksworld.com/ebook/1216
Programming in C: UNIX System Calls and Subroutines using C In order to use Solaris and most other Unix Systems you will need to be familiar with the Com
mon
Desktop Environment (CDE). Before embarking on learning C with briefly introduce the main features of the CDE. Most major Unix vendors now provide the CDE as standard. Consequently, most users of the X Window system will now be exposed to the CDE. Indeed, continuing trends in the development of Motif and CDE will probably lead to a convergence of these technologies in the near future. This section highlights the key features of the CDE from a Users perspective. http://www.bestebooksworld.com/ebook/1217
Numerical Recipes in C The new and greatly expanded second edition of the highly popular Numerical Recipes in C features over 100 new routines and upgraded versions of the original routines. The book remains the most practical,
comprehensive handbook of scientific computing available today. http://www.bestebooksworld.com/ebook/1218
How to Think Like a Computer Scientist (C++) The goal of this book is to teach you to think like a computer scientist. I like the way computer scientists think because they combine some of the best features of Mathematics, Engineering, and Natural Science. Like mathematicians, computer scientists use formal languages to denote ideas (specifically computations). Like engineers, they design things, assembling components into systems and evaluating tradeoffs among alternatives. Like scientists, they observe the behavior of complex systems, form hypotheses, and test predictions. The single most important skill for a com
puter scientist
is problem-solving. By that I mean the ability to formulate problems, think creatively about solutions, and express a solution clearly and accurately. As it turns out, the process of learning to program is an excellent opportunity to practice problem-solving skills. That's why this chapter is called 'The way of the program.' Of course, the other goal of this book is to prepare you for the Computer Science AP Exam. We may not take the most direct approach to that goal, though. For example, there are not many exercises in this book that are similar to the AP questions. On the other hand, if you understand the concepts in this book, along with the details of programming in C++, you will have all the tools you need to do well on the exam. http://www.bestebooksworld.com/ebook/1219
Writing Bug-Free C Code This book describes an alternate class methodology that provides complete data hiding and fault-tolerant run-time type checking of objects in C programs. With it, you will produce code that contains fewer bugs. The class methodology helps to prevent bugs by making it easier to write C code. It does this by eliminating data structures (class declarations) from include files, which makes a project easier to understand (because there is not as much global information), which makes it easier to write C code, which helps to eliminate bugs. This class methodology, which uses private class declarations, is different from C++, which uses public class declarations. The class methodology helps detect bugs by providing for both compile-time and run-time type checking of pointers (handles) to class objects. This run-time type checking catches a lot of bugs for you since invalid object
handles (the cause of a lot of bugs) are automatically detected and reported. We have all, at some point in our programming careers, spent several hours or days tracking down a particularly obscure bug in our code. Have you ever stepped back and wondered how following a different programming methodology might have prevented such a bug from occurring or have automatically detected it? Or have you tracked down the same type of bug several times? http://www.bestebooksworld.com/ebook/1220
The C Book This is not a tutorial introduction to programming. The book is designed for programmers who already have some experience of using a modern high-level procedural programming language. As we explain later, C isn't really appropriate for
complete beginners—though many have managed to use it—so the book will assume that its readers have already done battle with the notions of statements, variables, conditional execution, arrays, procedures (or subroutines) and so on. Instead of wasting your time by ploughing through tedious descriptions of how to add two numbers together and explaining that the symbol for multiplication is *, the book concentrates on the things that are special to C. In particular, it's the way that C is used which is emphasized. http://www.bestebooksworld.com/ebook/1221
Data Structures and Algorithms with Object-Oriented Design Patterns in C++; This book was motivated by my experience in teaching the course E&CE 250: Algorithms and D
ata Structures
in the Computer Engineering program at the University of Waterloo. I have observed that the advent of object-oriented methods and the emergence of object-oriented design patterns has lead to a profound change in the pedagogy of data structures and algorithms. The successful application of these techniques gives rise to a kind of cognitive unification: Ideas that are disparate and apparently unrelated seem to come together when the appropriate design patterns and abstractions are used. http://www.bestebooksworld.com/ebook/1222
C++ FAQ Lite Frequently Asked Questions for C++. http://www.bestebooksworld.com/ebook/1223<
/a>
Thinking in C++, 2nd Edition Two volumes of Bruce Eckel's book, one of the easiest to read and most definitive titles for C++. http://www.bestebooksworld.com/ebook/1224
A library of internal sorting routines This is a collection of sorting algorithms, in C. All the examples are thoroughly tested using random input generation and assertions, there are no known bugs. I've been using these, especially the fastest ``sedgesort'', in production code. http://www.bestebooksworld.com/ebook/3695 <
br> C++ in 2005 This extended foreword presents a perspective on 'The Design and Evolution of C++' and on C++ itself. In particular, it reflects on the use of C++ over the last decade and presents plausible directions for the next revision PDF] http://www.bestebooksworld.com/ebook/3700
C++ Language Summary This document provides neither a complete nor rigorous description of the C++ language. It does, however, describe the features of the language that are most useful to engineers and scientists. http://www.bestebooksworld.com/ebook/3701
Accelerated C++Practical Programming by Example Download Free Source Code http://www.bestebooksworld.com/ebook/3702
C and C++; Free Tutorials http://www.bestebooksworld.com/ebook/3703
C++ Glossary Online Free Tutorials http://www.bestebooksworld.com/ebook/3704
Tips and tricks for using C++ I/O (input/output) Tips and tricks for effectively using input and output in C++; http://www.bestebooksworld.com/ebook/3705
C++ Pitfalls Many examples of code that does compile, link and run but does something unexpected. http://www.bestebooksworld.com/ebook/3706
C&
#43;+
Programming Tutorials A brief C++ Tutorial http://www.bestebooksworld.com/ebook/3707
C+3; This offers C++ Programs, Source codes, compiler information http://www.bestebooksworld.com/ebook/3708
C++ Programming Language Tutorials These tutorials were developed as part of a series of courses on C++; http://www.bestebooksworld.com/ebook/3709
<
/li>C++ Tip-of-the-Day Welcome to the C++ Tip-of-the-Day. This is a compilation of information gathered from various sources. http://www.bestebooksworld.com/ebook/3710
Tech Talk About C++ and C Comeau C++ and C FAQ The intent of this page is to address questions about C++ and C that come up often, perhaps too often. However, it is exactly the frequency of these topics that is the reason for including a discussion of them below. These issues usually come up as having originated from a misleading statement commonly made, or from code shown in a book. http://www.bestebooksworld.com/ebook/3711
C++ FAQ LITE Frequently Asked Questions In C++; http://www.bestebooksworld.com/ebook/3712
On Refactoring C++ Code Free Tutorials http://www.bestebooksworld.com/ebook/3714
Pointers to C++ Member Functions A tutorial on a useful yet poorly understood language feature, useful as a cache or to
enable a different sort of polymorphism. http://www.bestebooksworld.com/ebook/3715
A few notes concerning C++ integral data types On this page, a few sides of dealing with whole numbers in C++ are described. In particular, a few notes and examples are reported that could help avoiding mistakes while using integers. http://www.bestebooksworld.com/ebook/3716
Techniques for Scientific C++; This report summarizes useful techniques for implementing scientific programs in C++, with
an emphasis on using templates to
improve performance. http://www.bestebooksworld.com/ebook/3717
C Categories C Languages Code Tutorials http://www.bestebooksworld.com/ebook/3632
C++ Code Examples C++ Code Tutorials http://www.bestebooksworld.com/ebook/3633
Casting in C++: Bringing Safety and
Smartness to Your
Programs The new C++ standard is full of powerful additions to the language: templates, run-time type identification (RTTI), namespaces, and exceptions to name a few. Rather than talk about one of these ``major'' extensions, I will discuss one of the minor extensions: the new C++ casting operators. http://www.bestebooksworld.com/ebook/3740
Guide to Network Programming(C++) Hey! Socket programming got you down? Is this stuff just a little too difficult to figure out from the man pages? You want to do cool Internet programming, but you don't have time to wade through a gob of structs trying to figure out if you have to call bind() before you connect(), etc. http://www.bestebooksworld.com/ebook/3741
Connecting to an Ms Access Database via ODBC with C/C+43; Connecting to an MS Access Database via ODBC with C/C++ and connecting an MS Access Database to the Internet. http://www.bestebooksworld.com/ebook/3743
Pointers Pointer Tutorial http://www.bestebooksworld.com/ebook/3744
Using Namespaces Properly (
C++) Namespaces are a very powerful C++ language feature. This article does not teach you the syntax of namespaces. Rather, it shows you how to use them properly.n my AP Computer Science class in a very condensed context. Here is an index of the different features of the C++ language that I will be going over. http://www.bestebooksworld.com/ebook/3745
Is Ada a better C? This is an article which appeared in EXE magazine in May 1997, under the slightly modified title of 'Ada better than C++?', comparing C++ and Ada language facilities under DOS. http://www.bestebooksworld.com/ebook/3753
A Beginners C++; A Beginners C++ is primarily intended for introductory Computer Science courses that use C++ as an implementation language. However, the book should be equally suited to an individual who wants to learn how to program their own personal computer. http://www.bestebooksworld.com/ebook/1535
C Primer Plus (5th Edition) Book Description The new classic! C Primer Plus , now in its 5th edition, has been revised to include over 20 new programming exercises, newly improved examples and the new ANSI/ISO standard, C99. Task-oriented examples will teach you the fundamentals of C programming. From extended integer type
s and compound
literals to Boolean support and variable-length arrays, you will learn to create practical and real-world applications with C programming. Review questions and programming exercises at the end of each chapter will reinforce what you have learned. This friendly and easy-to-use self-study guide will help you understand the fundamentals of this core programming language. http://www.bestebooksworld.com/ebook/1536
Data Structures and Algorithms with Object-Oriented Design Patterns in C++; This book was motivated by my experience in teaching the course E&CE 250: Algorithms and Data Structures in the Computer Engineering program at the University of Waterloo. I have observed that the advent of object-oriented methods and t
he emergence
of object-oriented design patterns has lead to a profound change in the pedagogy of data structures and algorithms. The successful application of these techniques gives rise to a kind of cognitive unification: Ideas that are disparate and apparently unrelated seem to come together when the appropriate design patterns and abstractions are used. http://www.bestebooksworld.com/ebook/1539
Optimizing C++; Optimizing C++ provides working programmers and those who intend to be working programmers with a practical, real-world approach to program optimization. Many of the optimization techniques presented are derived from my reading of academic journals that are, sadly, little known in the programming community. This book als
o draws on my
nearly 30 years of experience as a programmer in diverse fields of application, during which I have become increasingly concerned about the amount of effort spent in reinventing optimization techniques rather than applying those already developed. http://www.bestebooksworld.com/ebook/1540
C++: A Dialog.
http://www.bestebooksworld.com/ebook/1541
Numerical Recipes in C Thanks to special permission from Cambridge University Press, we are able to bring you the complete Numerical Recipes in C b
ook On-Line! To
utilize this resource, you will need an Adobe Acrobat viewer linked as a helper program to your web browser. Permission is granted by the copyright owners for users of this resource to make one paper copy of these Acrobat files for their own personal use. Further reproduction, or the extraction of, or copying of, machine readable files to any server computer, is strictly prohibited. This on-line resource is not intended as a substitute for purchasing the book, or for obtaining a license for the use of Numerical Recipes source code. http://www.bestebooksworld.com/ebook/1544
The C Programming Language Synopsis: Novice programmers should be able to pick up the C language from this book, which assumes some familiarity with basic
programming concepts like variables, assignment statements, loops, and functions. The guide describes C as defined by the ANSI standard. http://www.bestebooksworld.com/ebook/1545
C Programming This material may not be reproduced in printed or electronic format without the express permission of the author. Where permission is granted to host these files on a mirror or local site, the original copyright must remain intact. http://www.bestebooksworld.com/ebook/1739
| Internet eBooks Ada eBooks ASP eBooks ASP.Net eBooks C / C++ eBooks COBOL eBooks C Sharp eBooks D
elphi eBooks Fortran eBooks HTML / XML / CSS eBooks Java / J2EE eBooks Perl / CGI eBooks PHP eBooks Python eBooks VB / VB.Net eBooks Networking eBooks Database eBooks Microprocessor eBooks Comp Security eBooks Unix / Linux eBooks Comp Graphics eBooks Machine Language eBooks Hardware eBooks Web Design eBooks Children eBooks Marketing eBooks Publishing eBooks Acedemic eBooks Religion eBooks Economics eBooks Linux OS eBooks IT Books eBooks Electronics eBooks Science eBooks Medical eBooks Business eBooks Loans eBooks Online
Business eBooks Stock Trading eBooks Novels eBooks Poetry eBooks Recreation eBooks Games eBooks Travel eBooks Self Improvement eBooks Cooking eBooks Windows OS eBooks Data Structure eBooks Software Engineering eBooks Funny eBooks Spirituality eBooks SAP eBooks
|