C++ Programing in Telugu Step by Step Tutorials

C++ Tutorials in Telugu - Lesson 1



C++ Programming Language

C++ is a cross-platform programming language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ will give programmers a high level of control over system resources and memory.

C++ is one of the world's most popular and good programming languages. Even today we can find C++ in our operating systems, Graphical User Interfaces, and embedded systems. C++ is an object-oriented programming language which gives a clear structure to programs and allows code to be reused, at lower development costs. C++ is portable. Programmers can use C++ to develop applications that can be adapted to multiple platforms.

C++ is very easy to learn.

To start using C++, you need IDE:

We used Code Blocks in the tutorial

What is Code Blocks?

Code-Blocks is a free C, C++ and Fortran IDE built to meet the most demanding needs of its users. It is designed to be very extensible and fully configurable.

An IDE with all the features you need, having a consistent look, feel and operation across platforms.

You can download Code::Blocks for Free : Download

First Program : tcwfirstprogram.cpp


#include <iostream>
using namespace std;

int main() {
  cout << "Hello Telugu Computer World!";
  return 0;
}


To Understand C++ step by step, watch the above tutorial video.



Tutorials List