Skip to main content

Posts

Showing posts from 2016

first code on c++...03

first copy the rewite the code on codeblock. #include <stdio.h> int main () { /* my first program in C */ printf ( "Hello, World! \n" ); return 0 ; } first you should write "#include<stdio.h> on code bloce on any kind of c++ compailer. then you have to write the main function.int main.printf is "displing hellow, world" on the disply.and last curly bracate is for ending the programe .you must the save the code in cpp extention.

history of c++?? 02

To 1979, Bjarne Stroustrup, An danish PC scientist, started fill in on the antecedent with C++, "C with Classes. Those inspiration for making another dialect originated from Stroustrup's knowledge On modifying for as much ph. D. Postulation. Stroustrup found that Simula required Characteristics that were verwoerd supportive for vast programming development, yet the dialect might have been a really moderate to useful use, same time BCPL might have been quick At excessively awful low-level on make suitableness to substantial programming improvemen. When Stroustrup began attempting Previously, AT&T ringer Labs, he needed the issue for examining the unix portion with admiration to dispersed registering. Recollecting as much ph. D. Experience, Stroustrup set out will upgrade the c dialect with Simula-like offers. C's might have been picked on account of it might have been general-purpose, fast, transportable and generally utilized. And additionally c's Furthermore S...

what is c++??? 01

c++ C++  (pronounced as  cee plus plus ) is a general-purpose programming language. It has imperative, object-oriented and generic programming features, while also providing facilities for low-level memory manipulation. It was designed with a bias toward system programming and embedded, resource-constrained and large systems, with performance, efficiency and flexibility of use as its design highlights. C++ has also been found useful in many other contexts, with key strengths being software infrastructure and resource-constrained applications,including desktop applications, servers (e.g. e-commerce, web search or SQL servers), and performance-critical applications (e.g. telephone switches or space probes).C++ is a compiled language, with implementations of it available on many platforms and provided by various organizations, including the FSF,LLVM, M...