C++

C++ (generally pronounced "see plus plus") is a general-purpose programming language. It is a statically-typed free-form multi-paradigm language supporting procedural programming, data abstraction, object-oriented programming, and generic programming. Since the 1990s, C++ has been one of the most popular commercial programming languages.

Categories in section: Articles Reviews
4D Database (5) Actionscript (14) Ajax (30)
Apple (25) ASP (20) C++ (22)
CGI (10) Coldfusion (22) Content Management (12)
CSS (53) DHTML (16) Domain Names (14)
Hardware (31) HTML (39) Java (30)
Javascript (39) JSP (10) Linux (77)
Microsoft Access (17) Microsoft Windows (85) Mysql (21)
Networking & Communication (2) Oracle (15) Perl (19)
PHP (47) PostgreSQL (9) Python (16)
Ruby (51) SAP (2) Search Engine (27)
Structured Query Language (29) Visual Basic (15) Web Hosting (15)
XHTML (9) XML (21)

Ordering   Advanced search

Monday, 25 August 2008 |  Written by Eli Bendersky  | 
User rating: Rate it first |  Hits: 162
As I wrote here, I’m using Microsoft’s free Visual C++ Express edition (2005) for my home C/C++ coding. Today I reinstalled VC++ on my computer, and found the links that explain how to integrate the platform SDK into it not functioning. So I want to summarize what to do here, for posterity’s sake.  
Monday, 25 August 2008 |  Written by Eli Bendersky  | 
User rating: Rate it first |  Hits: 157
C is not an easy language to parse. A cursory glance at its BNF grammar should convince anyone immediately. One of the hairiest parts of the grammar is type declarations. The creators of C, Brian Kernighan and Dennis Ritchie, admit it themselves in the beginning of section 5.12 of K&R2 (“The C programming language 2nd Ed”):
Tuesday, 08 January 2008 |  Written by Juan Soulie  | 
User rating: Rate it first |  Hits: 659
Arguments passed by value and by reference. Until now, in all the functions we have seen, the arguments passed to the functions have been passed by value. This means that when calling a function with parameters, what we have passed to the function were copies of their values but never the variables themselves. For example, suppose that we called our first function addition using the following code: int x=5, y=3, z; z = addition ( x , y ); What we did in this case was to call to function addition passing the values of x and y, i.e. 5 and 3 respectively, but not the variables x and y themselves.
Monday, 07 January 2008 |  Written by Juan Soulie  | 
User rating: Rate it first |  Hits: 757
Using functions we can structure our programs in a more modular way, accessing all the potential that structured programming can offer to us in C++. A function is a group of statements that is executed when it is called from some point of the program. The following is its format: type name ( parameter1, parameter2, ...) { statements } where: type is the data type specifier of the data returned by the function. name is the identifier by which it will be possible to call the function. parameters (as many as needed): Each parameter consists of a data type specifier followed by an identifier, like any regular variable declaration (for example: int x) and which acts within the function as a regular local variable. They allow to pass arguments to the function when it is called. The different parameters are separated by commas. statements is the function's body. It is a block of statements surrounded by braces
Friday, 04 January 2008 |  Written by John Wircken  | 
User rating: Rate it first |  Hits: 593
C is a general-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories. Though ‘C’ was initially designed as a system implementation language, it is also widely used for applications. C Language has also greatly influenced many other popular languages such as C++ which was originally designed as an extension of C. C++ is a general purpose programming language and is regarded as a mid-level language, since it comprises both high-level and low-level languages. C++ was developed by Dr. Bjarne Stroustrup in 1979 at Bell Labs as an enhancement to the programming language C. C is therefore useful for many applications that have been coded in assembly language.
Monday, 03 September 2007 |  Written by Payton Byrd  | 
User rating: Rate it first |  Hits: 832
{mos_sb_discuss:31} Object oriented programming is a great, great boon to productivity when it is used correctly.  In my mind, the most powerful feature of OOP is inheritance and the ability to build on existing code bases to change behaviors without reinventing the wheel.
Sunday, 02 September 2007 |  Written by Bruce Eckel  | 
User rating: Rate it first |  Hits: 1058
{mos_sb_discuss:31} Since C++ is based on C, you must be familiar with the syntax of C in order to program in C++, just as you must be reasonably fluent in algebra in order to tackle calculus.
Friday, 24 August 2007 |  Written by Peteris Krumins  | 
User rating: Rate it first |  Hits: 811
{mos_sb_discuss:31} While browsing my favorite programming news site programming.reddit.com links I stumbled accorss this link to a video lecture on C++ upcoming standard C++0x by no one else than Bjarne Stroustrup himself! You can start watching it right away or you can download it in DivX, MPEG and other formats. I have a great interest in the C and C++ family of programming languages and their history, and I have read two of Bjarne’s books - C++ Programming Language and The Design and Evolution of C++. I enjoyed every page of these books and they made me not only a decent C++ programmer but also made me understand how the language was formed, what it’s goals were, where it was headed and how the language got various constructs it has now. If you ever consider becoming a great C++ programmer, these books are a definite read.
Sunday, 10 June 2007 |  Written by Phil Harrison  | 
User rating: Rate it first |  Hits: 1078
{mos_sb_discuss:31}  Keywords are words used for special purposes. You must not use these words as names of objects in your programs. The following is a list of Visual C++ keywords:
Sunday, 10 June 2007 |  Written by Phil Harrison  | 
User rating: Rate it first |  Hits: 922
{mos_sb_discuss:31} The fundamental parts of Visual C++, provided as part of the IDE, are the editor, the compiler,the linker and the libraries. These are the basic tools that are essential to writing and executing a C++ program. Their functions are as follows:
Results 1 - 10 of 22 << Start < Prev 1 2 3 Next > End >>

Powered by jReviews