Home

Submit

Source

Feeds

Home » C and C++ » Functions and Classes ::

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.
Related Tutorials
C and C++ General Development
Introducing Structs
C and C++ / General Development
A tutorial for beginners, offerring a look into C++ structures. How structures can be defined, created, accessed and what is their actual use. Includes example code.

Site: www.geekpedia.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
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++ Grapics
Check Box Win32 API
C and C++ / Grapics
In this tutorial u will learn about Check Box Control in window, How you can make them and How u can Control, all included in this tutorial.

Site: www.yodrive.com Report - View Tutorial

C and C++ General Development
Arrays
C and C++ / General Development
Arrays are useful critters because they can be used in many ways. For example, a tic-tac-toe board can be held in an array. Arrays are essentially a way to store many values under the same name. You can make an array out of any data-type including structures and classes.

Site: www.cprogramming.com Report - View Tutorial

C and C++ Miscellaneous
Data Structures
C and C++ / Miscellaneous
We have already learned how groups of sequential data can be used in C++. But this is somewhat restrictive, since in many occasions what we want to store are not mere sequences of elements all of the same data type, but sets of different elements with different data types.

Site: www.cplusplus.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++ General Development
Linked Lists
C and C++ / General Development
Linked lists are a way to store data with structures so that the programmer can automatically create a new place to store data whenever necessary. Specifically, the programmer writes a struct or class definition that contains variables holding information about something, and then has a pointer to a struct of its type. Each of these individual struct or classes in the list is commonly known as a node.

Site: www.cprogramming.com Report - View Tutorial

C and C++ General Development
CD Drive Control
C and C++ / General Development
Enumerates all CD-ROM drives and allows them to be opened and closed at the touch of a button.

Site: www.geekpedia.com Report - View Tutorial

 
Site Search

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