Thursday, March 8, 2012

Introduction C++ Programming Languages

This is my first entry in this blog, so first of all I will give some idea about the programming language C + +Programming language C / C + + is a popular language in teaching in computer science, as well as on the programmer who developed the system software and applications.

Language C / C + + its portable, because the compiler is available almost on all computer architectures and operating systems, so the investment of time and effort you are doing in learning the programming language has a strategic value that is very promising.

Language C / C + + is a language which is strict in the use of data type and the writing is case sensitive, this means that programmers are in demand discipline in the writing program.

Now we'll create a simple program which is quite easy and short.
we will create a program that will produce the output: "Welcome to C + + Programming and Welcome to learn C + + Programming"



There are some things we need to know before making a program that is about the structure of the program to be created.

First we make the algorithm, for the program that we will create:
1. Start Program.
2. displays The output : "Welcome to C + + Programming and Welcome to learn C + + Programming".
3. end Program.
That is the algorithm of the program that we will create, then we will make it a script program.


Script Program:
_________________________________________________________________________________
#include <stdio.h>                          //Header

void main()                                 //mian function
{
printf("Welcome to C++ Programming and Welcome to learn C++ Programming");    //output displays
}
_________________________________________________________________________________


That script out the program to display the results in the form of the phrase "Welcome to C + + Programming and Welcome Programming C + +".

And this is the program output results that we have made:

Introduction C++ Programming Languages

Thus we are first learning programming by creating a simple program. thank you for studying with me. come back soon to learn the other programming.

0 comments:

Post a Comment