Skip to main content

Introduction To C++

Introduction To C++

 






Note: Guys this is my first post on c++ 

As you go through this site you will see alot of  tutorial on c++ .To make it easy for you to access i will leave a link for you to go over to another page(another section of the tutorial)


INTRODUCTION TO C++


C++ is a general-purpose, case-sensitive, free-form programming language that supports procedural, object-oriented, and generic programming.

C++ is regarded as a middle-level language, as it comprises a combination of both high-level and low-level language features.


C++ was developed by Bjarne Stroustrup of AT&T Bell Laboratories in the early 1980's, and is based on the C language. The "++" is a syntactic construct used in C (to increment a variable), and C++ is intended as an incremental improvement of C. Most of C is a subset of C++, so that most C programs can be compiled (i.e. converted into a series of low-level instructions that the computer can execute directly) using a C++ compiler. 

C++ is a superset of C, and that virtually any legal C program is a legal C++ program.


Object-Oriented Programming


C++ fully supports object-oriented programming, including the four pillars of object-oriented development:

- Encapsulation

- Data hiding

- Inheritance

- Polymorphism



Uses of C++


- C++ is used by hundreds of thousands of programmers in essentially every application domain.


- In Adobe Systems All major applications are developed in C++: Photoshop & ImageReady, Illustrator, Acrobat, InDesign, GoLive


- C++ is widely used for teaching and research because it is clean enough for successful teaching of basic concepts.


- Anyone who has used either an Apple Macintosh or a PC running Windows has indirectly used C++ because the primary user interfaces of these systems are written in C++.


- Amazon.com, Facebook, Google, HP, IBM, Microsoft, Mozilla, Nokia & many more companies uses C++ language.


Advantages of C++


1. vendor-neutral: the C++ standard is the same in any platform or compiler

2. industrial (as opposed to academic): evolved to satisfy the needs of software engineers, not computer scientists

3. efficient. Compiles into highly optimized CPU-specific machine code with little or no runtime overhead.

4. multi-paradigm: allows the use and penalty-free mixing of procedural, OOP, generic programming, functional programming, etc

5. strictly statically typed (unlike Python for example): a large amount of logic (and sometimes even calculations) can be proved and performed at compile time, by the type checking/inferring system.

6. has deterministic memory management (as opposed to Java, C#, and other languages with garbage collectors): the life time of every object is known with absolute precision, which makes destructors useful and RAII possible.


Disadvantages of C++


1. very complex! The learning curve is steep and takes a long time to climb, especially for those who know C or C# or other superficially similar languages

2. has the concept of "undefined behavior" (just like C) -- a large class of errors that neither compiler nor the runtime system is required to diagnose.

3. has some design flaws, although they are largely fixed by boost libraries and the new language standard.

4. lacks network and async I/O, graphics, concurrency, serialization, and many other facilities expected of modern languages, although that is also largely fixed by boost libraries and (as far as concurrency is concerned) the new language standard.


Next: An Example of C++ Program  

Comments

Popular posts from this blog

How To install Kali Linux (nethunter) On Android (Without root) via proot-distro and install Kali Linux Xfce Desktop On Android using Termux

What is kali linux? Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security , This tutorial isn't only about learning how to install Kali Linux. Okay let's run down what we will be doing                        Table Of Content •Installing Kali Linux Terminal •Installing Kali Linux Desktop •Installing Default packages  •Creating vncserver port •Closing vncserver port •Closing multiple vncserver ports  •Reseting Kali Linux •Uninstalling Kali Linux  Okay!!!! Let's Begin Requirements: • Termux  : Click Here To Download Termux   Installation:   Please you can also copy and paste the commands below    The First thing we have to do is to make sure our repositories are up to date, to do that type the command  pkg update   It is essent...

Geegpay Writing Challenge: The Story of Amina

  Geegpay Writing Challenge Prompt: Life throws us lemons, and sometimes it's hard to make lemonade out of them. Amina, a 25-year-old aspiring photographer, is struggling to make ends meet while juggling freelance gigs and caring for her ageing mother. She feels invisible, undervalued, and on the verge of giving up. But then, an unexpected encounter with a renowned artist reignites her passion and inspires her to take control of her own narrative. Write a 300-word short story from Amina's perspective, showing her journey from despair to determination. Write about the challenges she faces, the things she learns about herself and how she finds the strength to turn things around.     Life throws us lemons, and sometimes it's hard to make lemonade out of them. My Story Starts Here:   Amina was walking down a crowded street with a heavy bag of cameras on her shoulder and a lot on her mind. 25 years old, she was feeling crushed by the pressures of life. She was struggling...

How To Create a Strong Virus And A Payload with Python 2023

Let’s start by saying that viruses are a little bit anachronistic in 2023… nowadays other kinds of  malware (like worms for example:) are far more common than viruses. Moreover, modern operative systems are more secure and less prone to be infected than MS-DOS or Windows 95 were (sorry Microsoft…) and people are more aware of the risk of malware in general. Moreover, to write a computer virus, probably Python is not the best choice at all. It’s an interpreted language and so it needs an interpreter to be executed. Yes, you can embed an interpreter to your virus but your resulting virus will be heavier and a little clunky… let’s be clear, to write a virus probably other languages that can work to a lower level and that can be compiled are probably a better choice and that’s why in the old days it was very common to see viruses written in C or Assembly. That said, it is still possible to write computer viruses in Python, and in this article, you will have a practical demonstration. T...