C documentation

C++ Abstract Classes

Introduction to C++ Abstract Classes Abstract classes ऐसी classes होती है जिनको सिर्फ दूसरी classes द्वारा inherit करने …

C++ Abstraction

Introduction to C++ Abstraction Data abstraction object oriented programming के सबसे महत्वपूर्ण features में से एक है। …

C++ Arrays

Introduction to C++ Arrays एक array similar type (data type) की values का collection होता है। ये values sequence में …

C++ Classes & Objects

Introduction to C++ Classes C language में आप structure के बारे में पढ़ चुके है। Structure एक बहुत ही important concept …

C++ Constants

Introduction to C++ Constants C++ में constants और variables एक समान ही होते है। Constants को भी variables की तरह ही …

C++ Data Types

Introduction to C++ Data Types जब भी आप किसी value को store करने के लिए variable create करते है तो आप साथ ही उस variable …

C++ Enumerated Types

Introduction to C++ Enumerated Types एक enumerated type (enumeration) user defined data type होता है जिसके variables को …

C++ Exception Handling

Introduction to C++ Exception Handling जब आप program बनाते है तो errors आना स्वाभाविक है। सभी programming languages में …

C++ File Handling

Introduction to C++ File Handling C++ के द्वारा files को भी handle किया जा सकता है। इसके लिए C++ आपको streams provide …

C++ Flow Control

Introduction to C++ Flow Control Normally जब भी कोई C++ program execute होता है तो पहला दूसरा तीसरा ऐसे ही sequence में …

C++ Friend Function & Class

C++ Friend Functions जैसा की आपको पता है किसी भी class के public members को class के बाहर आसानी से access किया जा सकता …

C++ Functions

Introduction to C++ Functions एक function कुछ programming statements का group होता है। ये statements एक particular task …

C++ I/O Operations

Introduction to C++ I/O Operations जैसा की आप जानते है हर program में कुछ input दिया जाता है और वह program इस input को …

C++ Inheritance

Introduction to C++ Inheritance Object oriented programming का एक सबसे महत्वपूर्ण feature ये है की आप एक class में …

C++ Inline Functions

Introduction to C++ Inline Functions जब program किसी normal function को execute करता है तो सबसे पहले CPU function call …

C++ Multithreading

Introduction to C++ Multithreading एक thread किसी process में stream होती है जिससे कोई task perform होता है। किसी …

C++ Namespaces

Introduction to C++ Namespaces मान लीजिये किसी project पर एक से अधिक programmers काम कर रहे है, तो ऐसा हो सकता है की कोई …

C++ Operator Overloading

Introduction to C++ Operator Overloading जैसा की आपको पता है, class एक user defined data type होती है। C++ में provide …

C++ Operators

Introduction to C++ Operators किसी भी C++ program में data पर operations perform किये जाते है। इसके लिए सबसे पूर्व data …

C++ Pointers

Introduction to C++ Pointers Pointers के बारे में आप C language में पहले पढ़ चुके है। C++ में भी pointers को उसी प्रकार …

C++ References

Introduction to C++ References C++ में reference या reference variable किसी existing variable का alias (वैकल्पिक नाम) …

C++ Storage Classes

Introduction to C++ Storage Classes C++ में variables की अलग अलग storage classes (categories) होती है। अलग अलग storage …

C++ Strings

Introduction to C++ Strings Strings characters की sequence होती है। आसान शब्दों में कहें तो जब अक्षरों को एक क्रम में …

C++ Templates

Introduction to C++ Templates Templates C++ का एक important feature है। Templates C++ में generic programming की ability …

C++ Type Conversion

Introduction to C++ Type Conversion Type conversion एक ऐसी process होती है जिसमें एक तरह के data type की value/variable …

C++ Type Modifiers

Introduction to C++ Type Modifiers C++ आपको कुछ built in primitive data types (int, char और double) को modify (change) …

C++ Type Qualifiers

Introduction to C++ Type Qualifiers C++ में type qualifiers के द्वारा किसी variable के बारे में अतिरिक्त जानकारी provide …

C++ Variables

Introduction to C++ Variables किसी भी तरह के data को computer memory में store करने के लिए आप variables का उपयोग करते …

C++ Virtual Functions

Introduction to C++ Virtual Functions C++ आपको polymorphism की capability provide करती है। Polymorphism का मतलब एक …

Introduction to C++

C++ एक object oriented programming language है। C++ Bjarne stroustrup के द्वारा develop की गयी थी। C++ के आने से पहले c …