Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

Console INPUT/OUTPUT - C++ tutorial


To read some text from the command line you use the Console.Read or Console.ReadLine method implemented in the .net framework. The difference between them is that the Console.Read method reads the next character from the command line, whereas Console.ReadLine reads the next line of characters instead of just a simple character. The Console.Read method returns an integer and should be cast to a char during the input. There is also a special function called Console.ReadKey( Boolean display) which obtains the key that is pressed on the keyboard and if the display parameter is false it depicts it.
Category: C++ tutorials > Programming - Difficulty:


More cool C++ tutorials:



This pointer - C++
This pointer - C++
C++ uses the keyword this to point to the object, which invokes the member function. For instance, if class emp has a member function called getdata and the object objl of emp invokes it as shown in the first statement.
Category: C++ tutorials > Basics - Difficulty:
The while statement - C++
The while statement - C++
The working of the while statement is as follows. First, the test condition is evaluated.
Category: C++ tutorials > Basics - Difficulty:
Drawing Graphics In C#
Drawing Graphics In C#
In this tutorial we will present the basic steps for drawing graphics. Something that most programmings find interesting with C# for the beginning of anything related to graphics programming such as Game Development.
Category: C++ tutorials > Graphics - Difficulty:
Storing Strings in Arrays in C
Storing Strings in Arrays in C
Storing Strings in Arrays in C
Category: C++ tutorials > Games - Difficulty:
A Beginner's Introduction to variables in C++
A Beginner's Introduction to variables in C++
A Beginner's Introduction to variables in C++
Category: C++ tutorials > Basics - Difficulty: