Home

Submit

Source

Feeds

Home » C and C++ » Getting Started ::

C and C++ Getting Started
A basic starting tutorial on C and C++.
Related Tutorials
C and C++ General Development
Binary Trees: Part 1
C and C++ / General Development
The binary tree is a fundamental data structure used in computer science. It is a useful data structure for rapidly storing sorted data and rapidly retrieving stored data.

Site: www.cprogramming.com Report - View Tutorial

C and C++ General Development
If Statements
C and C++ / General Development
The ability to control the flow of your program, letting it make decisions on what code to execute, is valuable to the programmer. The if statement allows you to control if a program enters a section of code or not based on whether a given condition is true or false. One of the important functions of the if statement is that it allows the program to select an action based upon the user's input.

Site: www.cprogramming.com Report - View Tutorial

C and C++ Functions and Classes
Control Structures
C and C++ / Functions and Classes
A program is usually not limited to a linear sequence of instructions. During its process it may bifurcate, repeat code or take decisions. For that purpose, C++ provides control structures that serve to specify what has to be done by our program, when and under which circumstances.

Site: www.cplusplus.com Report - View Tutorial

C and C++ Getting Started
Lesson 10: Program Iterations
C and C++ / Getting Started
Today's lecture is also examples mostly, but this time I'll introduce you to iterations and you will see why these program lines are common in every programmer's code. Just don't be confused when you see i= i++ (this really bugged me when I was first introduced to world of programming). How the heck can i be equal to i+1 ? You have to think outside of the box this time, and forget regular math.

Site: visualcplus.blogspot.com Report - View Tutorial

C and C++ Getting Started
Lesson 19: C Programming Examples
C and C++ / Getting Started
I've based this lesson on a single program example. This part of C programming tutorial has dual purpose: firstly to teach you how to apply previously learned C/C++ knowledge, second: to show you how pointers, arrays, functions and matrixes can be combined together in one single program.

Site: visualcplus.blogspot.com Report - View Tutorial

C and C++ Functions and Classes
The Methods of a Class
C and C++ / Functions and Classes
The primary motivation of using classes in a program is to create objects as complete as possible. An object must be able to handle its own business so that the other objects of the program or of another program would only need to know which object can take care of a particular need they have. A regular variable, as a member of an object, cannot handle assignments. This job is handled by particular functions declared as members of a class. A function as a member of a class is also called a Method. On this site, the words "method" and "function", when associated with a class, will refer to the same thing: a member function of the class.

Site: www.functionx.com Report - View Tutorial

C and C++ Functions and Classes
Functions (I)
C and C++ / Functions and Classes
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++.

Site: www.cplusplus.com Report - View Tutorial

C and C++ Games Development
Making a game: The Development
C and C++ / Games Development
Gives a high level overview of the development process, from team structure to project planning.

Site: www.cpp-home.com Report - View Tutorial

C and C++ General Development
Command Line Arguments
C and C++ / General Development
In C++ it is possible to accept command line arguments. Command-line arguments are given after the name of a program in command-line operating systems like DOS or Linux, and are passed in to the program from the operating system.

Site: www.cprogramming.com Report - View Tutorial

C and C++ Miscellaneous
Size of Structures
C and C++ / Miscellaneous
In this programming tutorial we will see that 2 structures with the same elements but with different arrange of elements make a different size of structure.

Site: www.geekpedia.com Report - View Tutorial

C and C++ Functions and Classes
Classes (I)
C and C++ / Functions and Classes
A class is an expanded concept of a data structure: instead of holding only data, it can hold both data and functions. An object is an instantiation of a class. In terms of variables, a class would be the type, and an object would be the variable.

Site: www.cplusplus.com Report - View Tutorial

C and C++ Grapics
The VGA Training Program
C and C++ / Grapics
This tutorial will teach you how to create some graphics over C++ and Pascal. It requires some programming knowledge.

Site: www.cpp-home.com Report - View Tutorial

C and C++ General Development
Intro to C++
C and C++ / General Development
This tutorial is designed for everyone: even if you've never programmed before or if you have extensive experience programming in other languages and want to expand into C++! It is for everyone who wants the feeling of accomplishment from a working program.

Site: www.cprogramming.com Report - View Tutorial

C and C++ General Development
Structures
C and C++ / General Development
Structures are a way of storing many different values in variables of potentially different types under the same name. This makes it a more modular program, which is easier to modify because its design makes things more compact.

Site: www.cprogramming.com Report - View Tutorial

C and C++ Miscellaneous
GNU Debugger - GDB
C and C++ / Miscellaneous
A debugging tool to debug errors in C and C++ programs. A debugger is the best friend of a software programmer. This tutorial assumes you already know how to program in C and C++ and you can compile and execute programs.

Site: www.tutorialspoint.com Report - View Tutorial

 
Site Search

 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement