-moz-user-select:none; -webkit-user-select:none; -khtml-user-select:none; -ms-user-select:none; user-select:none;

Tuesday 17 February 2015

Your first program in C++

I hope you have viewed my previous blogs about programming and translators.
Now we will start with a basic program of C++.This basic program will help you to print a simple statement.So,lets start programming.I recommend you to use Turbo C++ for simple programming.
1. #include<iostream.h>
2. #include<conio.h>
3. void main()
4.{
5. cout<<“Welcome to my blog”;
6. getch();
7. }

Output:

Welcome to my blog

No comments:

Post a Comment