Computers
 3D Graphics  Games  Operating Systems  Programming  Web Design 
All tutorials in Computers
Sort By:    Name   Rating   Views  Comments    Date 
Browse Pages :    <<  <  1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  >  >> 

In this tutorial you can Learn the basics of Curves in no time! Watch this video careful and you will see.

Views: 739 Comments: 0

This video isn't too straightforward. It was originally intended for newbies. Therefore, it's quite basic... I might make a more advanced (and hopefully, better made) tutorial soon.

Views: 712 Comments: 0

This is a quick tutorial on producing gritty, disgusting photos, which have a Halloween feel to them. If you need any more help, feel free to comment the video, and I'll try my hardest to give you a detailed response. Constructive criticism would be appreciated.

Views: 774 Comments: 0

Tutorial on how to cut out an image in Photoshop and stack layers to create image effects.

Views: 827 Comments: 0
Objects in C++
Submitted 13 June 2008

C++ does much more with initializing objects than C does. For example, class objects have constructors, and global objects can have general initializers that cannot be evaluated at compile time.

Views: 510 Comments: 0
General Initializers
Submitted 13 June 2008

When a program is loaded by the operating system for execution, a common scheme will have the text and data stored within the binary file on disk that represents the program, and the bss section simply stored as an entry in a symbol table and created and zeroed dynamically when the program is loaded.

Views: 391 Comments: 0
External Linkage
Submitted 13 June 2008

One of the common issues that always comes up with programming languages is how to mix code written in one language with code written in another.

Views: 368 Comments: 0
Type Names In C++
Submitted 13 June 2008

Taking advantage of this feature, that is, giving a class type and a variable or function the same name, isn't very good usage. It's supported for compatibility reasons with old C code; C puts structure tags (names) into a separate namespace, but C++ does not. Terms like "struct compatibility hack" and "1.5 namespace rule" are sometimes used to describe this feature.

Views: 465 Comments: 0
Inline Functions
Submitted 13 June 2008

Such a function is written just like a regular C or C++ function. But it IS a function and not simply a macro; macros don't really obey the rules of C++ and therefore can introduce problems. Note also that one could use C++ templates to write this function, with the argument types generalized to any numerical type.

Views: 333 Comments: 0
Operator Overloading
Submitted 13 June 2008

Operator overloading in C++ is very powerful but can be abused. It's quite possible to create a system of operators such that it is difficult to know what is going on with a particular piece of code.

Views: 415 Comments: 0
Function Overloading
Submitted 13 June 2008

Suppose that you are writing some software to manipulate calendar dates, and you wish to allow a user of the software to specify dates in one of two forms:

Views: 315 Comments: 0
Declaration Statements
Submitted 13 June 2008

In C++, declarations of this type are not required to appear only at the top of the function or block. They can appear wherever C++ statements are allowed.

Views: 426 Comments: 0
Operator New/Delete
Submitted 13 June 2008

This term doesn't have a precise meaning, but one way of looking at it is to focus on the features C++ adds to C, exclusive of the most obvious one, namely the class concept used in object-oriented programming.

Views: 304 Comments: 0
References in C++
Submitted 13 June 2008

In another tutorial we discussed using function prototypes in C++ to eliminate a common type of error encountered in C, that of calling a function with the wrong number or types of arguments. Another C++ feature that can be used to reduce programming errors is known as references.

Views: 278 Comments: 0
Duplicate Inlines
Submitted 13 June 2008

So what happens if the inline function is not expanded as inline? The answer varies from compiler to compiler. The traditional approach is to lay down a static copy of the function body, one copy for each translation unit where the inline function is used, and with such copies persisting throughout the linking phase and showing up in the executable image. Other approaches lay down a provisional...

Views: 265 Comments: 0
Browse Pages :    <<  <  1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  >  >>