█──☻ηιмƒιgнтєяѕ☻──█
Welcome to our world.please sign up and stay with us.
█──☻ηιмƒιgнтєяѕ☻──█
Welcome to our world.please sign up and stay with us.
█──☻ηιмƒιgнтєяѕ☻──█
Would you like to react to this message? Create an account in a few clicks or log in to continue.


☺ƒιgнт ωιтн уσυя єηєму ву υѕιηg ωαρ ƒℓσσ∂, нα¢кιηg, α∂∂ ƒℓσσ∂... єт¢ ... αη∂ кєєρ νιѕιт ωιтнυѕ αℓωαуѕ☺
 
PortalHomeSearchLatest imagesRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» online spybot and server bots
C++ language....make ur own applicati0n Icon_minitimeTue May 26, 2015 10:23 am by huss4in.

» auto flood enjoy
C++ language....make ur own applicati0n Icon_minitimeSat Sep 20, 2014 8:35 pm by Stylish

» NEW SITE UNBLOCK JID
C++ language....make ur own applicati0n Icon_minitimeSun Dec 08, 2013 2:41 pm by al.mdmr

» Advertiser_v0_2_Bote_Tabligh
C++ language....make ur own applicati0n Icon_minitimeSat Oct 12, 2013 11:46 pm by amin742

» How to get your nimbuzz hacked account or ID back?
C++ language....make ur own applicati0n Icon_minitimeSun Sep 08, 2013 11:47 am by rk57878

» Dc All Client
C++ language....make ur own applicati0n Icon_minitimeFri Aug 23, 2013 7:02 am by amin742

» backe id hack
C++ language....make ur own applicati0n Icon_minitimeSat Jul 20, 2013 5:33 pm by amin742

» full bot badbuzz new
C++ language....make ur own applicati0n Icon_minitimeTue Jul 16, 2013 3:08 pm by amin742

» full bot badbuzz new
C++ language....make ur own applicati0n Icon_minitimeSun Jul 14, 2013 2:45 pm by amin742

Top posters
_~vijay~_
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
Admin
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
harry_potter123
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
amin742
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
--=(dark-kn!ght)=--
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
best_boy
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
-----Nimbuzzer-----
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
eye
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
xdmx
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
R0meo
C++ language....make ur own applicati0n EmptyC++ language....make ur own applicati0n Voting_bar2C++ language....make ur own applicati0n Empty 
Counter

Nimfighters counter

nimfighters clock
Our visitors
free counters

 

 C++ language....make ur own applicati0n

Go down 
2 posters
AuthorMessage
harry_potter123
Administrator
Administrator
harry_potter123


Posts : 36
Points : 156
12
Join date : 2011-08-25
Age : 30

C++ language....make ur own applicati0n Empty
PostSubject: C++ language....make ur own applicati0n   C++ language....make ur own applicati0n Icon_minitimeWed Jan 25, 2012 5:27 am

C++ is an object oriented language, which combines the best of the structured programming techniques of C, thus making it a very powerful language. C++ is based on C and Simula 67 language. C was invented by Bjarne Stroustrup. Since C++ is a superset of C, therefore most of C language constructs apply in C++ as well. A program in C++ can be written in both C style and Object Oriented style. First Program Let us start our tour of C++ with a simple program. Here is a simple program which outputs a line of text. It’s output is shown in the right column. // This is my first C++ program //It prints a line of text # include <iostream> int main() { std:: cout << “My first C++ program ” << std::endl; return 0; } My first C++ program Structure of the C++ Program and C++ features Above program demonstrates several important features of C ++ language. The structure of the program above is as follows:- // This is my first C++ program //It prints a line of text are comments in C++ language. # include <iostream> is a preprocessor directive. It tells the preprocessor to include the contents of iostream header file in the program before compilation. This file is required for input output statements. main Function int main() is a function. C++ program is a collection of functions. Every program in C++ begins executing at the function main (). Every C++ program has exactly one main function and a collection of other functions. A function is the main entity where all of the functionality of a program is defined. A function takes some input, processes it according to the some code written in the function body and produces an output which can be either sent to the user or can be used by other functions. Keyword int in int main() specifies the return type of a function. int specifies that the function main returns an integer value. Brackets () after main signify that main is a function. Every function should be followed by a pair of brackets. The purpose of brackets is to pass the parameters list to the functions. Parameters are the number and type of arguments (inputs) which a function takes. Opening brace ( { ) and closing brace ( } ) mark the beginning and end of a function. Anything which is inside the braces is the body of that function. In our example, the function body consists of only two statements, { std::cout << “My first C++ program. \n”; return 0; }
Back to top Go down
Ju$t

Ju$t


Posts : 1
Points : 1
0
Join date : 2012-01-22

C++ language....make ur own applicati0n Empty
PostSubject: C++ language....make ur own applicati0n   C++ language....make ur own applicati0n Icon_minitimeThu Jan 26, 2012 7:27 pm

But dude c progarmming was develop by dennis ritche in 1972 at AT'S and T'S bell laboratery of u.s.a:D
Back to top Go down
 
C++ language....make ur own applicati0n
Back to top 
Page 1 of 1
 Similar topics
-
» Make ur oWn web fl00d ....***
» How to make best web ƒℓσσ∂....
» A h0st f0r make own ƒℓσσ∂

Permissions in this forum:You cannot reply to topics in this forum
█──☻ηιмƒιgнтєяѕ☻──█  :: █─☻others☻─█ :: C++,c#,java,pyth0n p0graming-
Jump to: