C/C++

Do you like HowtoForge? Please consider to support us by becoming a subscriber.

Learning C/C++ Step-By-Step

Submitted by ganesh35 (Contact Author) (Forums) on Wed, 2009-01-07 18:03. :: C/C++

Learning C/C++ Step-By-Step

Many people are really interested in learning and implementing C/C++ programs on their favorite platforms like DOS/Windows or Linux. If you are the one looking for a step-by-step guide to get started, this tutorial is for you. Let me know your comments on  my tiny attempt to serve the community.

An Explanation of Pointers (C++)

Submitted by VirtualEntity (Contact Author) (Forums) on Sat, 2007-02-24 18:20. :: C/C++

An Explanation of Pointers (C++)

Pointers are basically the same as any other variable. However, what is different about them is that instead of containing actual data, they contain a pointer to the memory location where information can be found. This is a very important concept, and many programs and ideas rely on pointers as the basis of their design, linked lists for example.

Beginner's Guide To c++

Submitted by mikieosullivan (Contact Author) (Forums) on Thu, 2007-02-22 18:25. :: C/C++

Beginner's Guide To c++

This is a guide to the very basics of c++ its aimed at people who have never programmed in C++, it covers setting up the program, and also the basics of variable definition, commenting, the cout and cin function and basic operators.