1.

C++ revision tour notes​

Answer»

C++ is a middle-level programming language developed by Bjarne Stroustrup starting in 1979 at BELL Labs. C++ runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. This C++ TUTORIAL adopts a simple and practical approach to describe the concepts of C++ for beginners to advanded software engineers.Hello World using C++Just to give you a little excitement about C++ programming, I'm going to give you a small conventional C++ Hello World program, You can TRY it using Demo linkC++ is a super set of C programming with additional implementation of object-oriented concepts.#include using namespace std; int main() {cout << "Hello World"; prints Hello World return 0;}Applications of C++ Programming:Application Software Development - C++ programming has been used in developing almost all the major Operating Systems like Windows, Mac OSX and Linux. Apart from the operating systems, the core part of many browsers like Mozilla Firefox and Chrome have been written using C++. C++ also has been used in developing the most popular database system called MySQL.Programming Languages Development - C++ has been used extensively in developing new programming languages like C#, Java, JavaScript, Perl, UNIX’s C Shell, PHP and Python, and Verilog etc.Computation Programming - C++ is the best friends of scientists because of fast speed and computational efficiencies.Games Development - C++ is extremely fast which ALLOWS programmers to do procedural programming for CPU intensive functions and provides greater CONTROL over hardware, because of which it has been widely used in development of gaming engines.Embedded System - C++ is being heavily used in developing Medical and Engineering Applications like softwares for MRI machines, high-end CAD/CAM systems etc.



Discussion

No Comment Found