Nano teach C++

Customizable training materials to learn C++

Looking for C++ Tutorial Visit Nano teach c++!
  • C++ Compute the Sum and Average of Two Numbers
    03/07/2014 - 0 Comments
    This program takes in two integers x and y as a screen input from the user. The sum and average of these two integers are calculated and outputted using the ‘cout’…
  • C++ Tutorial
    16/07/2014 - 0 Comments
    This tutorial series will help you to get started in C++ to develop system applications.   C++ Example: /* * File: main.cpp * Author: Nano * Just click…
Nano teach C++ found result for your search here:

C++ Tutorial

This tutorial series will help you to get started in C++ to develop system applications.   C++ Example: /* * File: main.cpp * Author: Nano * Just click image to copy & paste */ (adsbygoogle = window.adsbygoogle || []).push({}); #include <iostream> int main() { std::cout<<"This is my first c++ Program."; std::cout<<std::endl<<"and its very easy"; }...
Read More »

C++ Introduction

C++ is a multi-paradigm programming language that supports object oriented programming (OOP), created by BJarne Stroustrup in 1983 at Bell Labs, C++ is an extension (superset) of C programming and the programs written in C language can run in C++ compilers. The development of C++ actually began four years before its release, in 1979. It did not start out with the name C++; its first name was C with Classes. In the late part of 1983, C with Classes was first used for AT&T’s internal programming needs. Its name was changed to C++ later in the same year. C++ was not released commercially...
Read More »

C++ Installation

To start learning C++ programming, you only need to install the C++ compiler in your System. What is a Compiler? A compiler is a computer program that transforms human readable (programming language) source code into another computer language (binary) code. This tutorial is written for Windows, Unix / Linux and MAC users. All code has been tested and it works correctly on all three operating systems. C++ Compiler Installation on Windows To use C++ compiler in Windows, you can install any one software mentioned below. You can download a 90-day trial version of Visual Studio You can download...
Read More »

C++ Program Structure

This tutorial will explain you about the C++ program structure. Basically a C++ program involves the following section. Documentations Preprocessor Statements Global Declarations The main() function Local Declarations Program Statements & Expressions User Defined Functions Here is a simple program which outputs a line of text. Example: (adsbygoogle = window.adsbygoogle || []).push({}); /* * File: main.cpp * Author: Gautam * Created on October 16, 2011, 4:09 PM */ #include <iostream> int main() { std::cout<<"This is my first c++ Program."; ...
Read More »

C++ Manipulators

Manipulators are operators used in C++ for formatting output. The data is manipulated by the programmer’s choice of display. Some of the more commonly used manipulators are provided here below: endl Manipulator endl is the line feed operator in C++. It acts as a stream manipulator whose purpose is to feed the whole line and then point the cursor to the beginning of the next line. We can use \n (\n is an escape sequence) instead of endl for the same purpose. setw Manipulator This...
Read More »

C++ Data Types

Data types in any of the language means that what are the various type of data the variables can have in that particular language. Information is stored in a computer memory with different data types. Whenever a variable is declared it becomes necessary to define data type that what will be the type of data that variable can hold. Data Types available in C++ are: Primary Data Type character, integer, floating point, boolean, double floating point, void, wide character Additional...
Read More »

C++ Variables

In C++ Programming language variable is used to store data in memory location. Rules of Declaring variables in C++ Variable name can consist of Capital letters A-Z, lowercase letters a-z, digits 0-9, and the underscore character. The first character must be a letter or underscore. Blank spaces cannot be used in variable names. Special characters like #, $ are not allowed. C++ keywords can not be used as variable names. Variable names are case sensitive. A variable name can be consist...
Read More »