Skip to main content

Histroy of C++( C++ Ka Itihas)


C++ History(सी ++ का इतिहास )

C++ programming language was developed in 1980 by Bjarne Stroustrup at bell laboratories of AT&T (American Telephone & Telegraph), located in U.S.A.

Bjarne Stroustrup is known as the founder of C++ language.

It was develop for adding a feature of OOP (Object Oriented 

Programming) in C without significantly changing the C component.

C++ programming is "relative" (called a superset) of C, it means any valid C program is also a valid C++ program.

(डिअर स्टूडेंट्स अगर आप सी ++ का इतिहास पड़ना चाहते है तो आप को कुछ स्टडी मैटेरियल्स पर  ध्यान देना होगा जो मैंने आप के लिए कुछ टेबल्स में मेंशन कर रखे है |
तो आप इन पॉइंट्स को बहुत अच्छे से पढ़ लीजिए तो ही आपको कुछ पॉइंट्स समझ आ सकता है }
तो प्लीज जस्ट रीड आउट }....... )

Let's see the programming languages that were developed before C++ language.

LanguageYearDeveloped By
Algol1960International Group
BCPL1967Martin Richard
B1970Ken Thompson
Traditional C1972Dennis Ritchie
K & R C1978Kernighan & Dennis Ritchie
C++1980Bjarne Stroustrup

C++ Features(फीचर्स )

C++ is object oriented programming language. It provides a lot of features that are given below.

Cpp Features
  1. Simple(सिंपल)
  2. Machine Independent or Portable(मशीन इंडिपेंडेंट और पोर्टेबल )
  3. Mid-level programming language(मिड लेवल प्रोग्रामिंग लैंग्वेज )
  4. Structured programming language(स्ट्रक्चर्ड प्रोग्रामिंग लैंग्वेज )
  5. Rich Library(रिच लाइब्रेरी )
  6. Memory Management(मेमोरी मैनेजमेंट)
  7. Fast Speed(फ़ास्ट स्पीड )
  8. Pointers(पॉइंटर्स )
  9. Recursion(रिकर्शन )
  10. Extensible(एक्सटेंसिबल)
  11. Object Oriented
  12. Compiler based

तो स्टूडेंट्स अपने इनके फीचर्स तो पड़ ही लिए होंगे लेकिन मै इन फीचर्स को और एक्सप्लेन करना चाहता हु तो मैंने निचे हेडिंग वाइज कुछ डिस्क्रिप्शन लिख रखे है आप उनको पढ कर इनके फीचर्स के बारे में और अच्छे से जान पाएंगे( सो जस्ट सी बिलो।   )



1) Simple( सिंपल)

C++ is a simple language in the sense that it provides structured approach (to break the problem into parts), rich set of library functions, data types etc.


2) Machine Independent or Portable(मशीन पर डिपेंड न होना )

Unlike assembly language, c programs can be executed in many machines with little bit or no change. But it is not platform-independent.




3) Mid-level programming language(मिडिल लेवल प्रोग्रामिंग )


C++ is also used to do low level programming. It is used to develop system applications such as kernel, driver etc.

 It also supports the feature of high level language. That is why it is known as mid-level language.


4) Structured programming language(क्रमबृद्ध  प्रोग्रामिंग करना )


C++ is a structured programming language in the sense that we can break the program into parts using functions. So, it is easy to understand and modify.



Rich Library(रिच लाइब्रेरी )

C++ provides a lot of inbuilt functions(पहले से बने हुए फंक्शन्स) that makes the development fast.


6) Memory Management(मेमोरी मैनेजमेंट )


It supports the feature of dynamic memory allocation. In C++ language, we can free the allocated memory at any time by calling the free() function.


7) Speed(स्पीड )


The compilation and execution time of C++ language is fast.

8) Pointer(पॉइंटर)


C++ provides the feature of pointers. We can directly interact with the memory by using the pointers. 

We can use pointers for memory, structures, functions, array etc.


9) Recursion(रिकर्शन )


In C++, we can call the function within the function. It provides code reusability for every function.

10) Extensible(एक्सटेंसिबल )


C++ language is extensible because it can easily adopt new features.


11) Object Oriented(ऑब्जेक्ट ओरिएंटेड )


C++ is object oriented programming language. OOPs makes development and maintenance easier where as in Procedure-oriented programming language it is not easy to manage if code grows as project size grows.


12) Compiler based(कम्पाइलर बेस्ड )


C++ is a compiler based programming language, it means without compilation no C++ program can be executed. First we need to compile our program using compiler and then we can execute our program.

Comments

Popular posts from this blog

Memory Hierarchy

Memory Hierarchy A memory unit is an essential component in any digital computer since it is needed for storing programs and data. Typically, a memory unit can be classified into two categories: The memory unit that establishes direct communication with the CPU is called  Main Memory . The main memory is often referred to as RAM (Random Access Memory). The memory units that provide backup storage are called  Auxiliary Memory . For instance, magnetic disks and magnetic tapes are the most commonly used auxiliary memories. Apart from the basic classifications of a memory unit, the memory hierarchy consists all of the storage devices available in a computer system ranging from the slow but high-capacity auxiliary memory to relatively faster main memory. The following image illustrates the components in a typical memory hierarchy. Auxiliary Memory Auxiliary memory is known as the lowest-cost, highest-capacity and slowest-access storage in a computer system. Auxiliar