Introduction to Data Structure
Data structures are a way of organizing and storing data in a computer so that it can be accessed and modified efficiently. Different types of data structures are suited to…
Data structures are a way of organizing and storing data in a computer so that it can be accessed and modified efficiently. Different types of data structures are suited to…
Array एक प्रकार का derived data type है जो को एक बार एक से अधिक element (values) को स्टोर कर सकता है। array एक बार में एक ही प्रकार (same…
object Table of ContentsConstructorTypes of constructor1. Default constructor2. Parameterized constructor2. Copy constructor Constructor Constructor is a special kind of member method which never return a value. It is used to…
Table of ContentsClassObject Class Class is a logical entity contains the information of their members like member method, member variable, static method, static variable, access modifier, constructor, destructor & constant.…
Everything is based on objects and classes. Object-oriented programming (OOP) is a programming paradigm that is based on the concept of “objects”, which are data structures that contain both data…
Table of ContentsTypes of Comment1. Single Line Comment1. Multi-Line Comment Comment का उपयोग को program को explain करने की लिए किया जाता है, ताकि जो प्रोग्राम को read करते ही…
Table of ContentsKeywordsC Keywords ListIdentifiersRules of declaring an Identifier Keywords Keywords वो word (शब्द) है जिनकी meaning पहले से define है। जिनको हम अपने program में variable/identifier के रूप में…
#include <stdio.h> void main() { printf("Hello, World!"); } line 1 में जो #include लिखा गया है ये preprocessor directive कहलाता है। stdio.h एक header file जिसे प्रत्येक c program में…
Table of ContentsLinked ListLinked List Representation in MemoryTypes of Linked ListsOperations on Linked List1. Singly Linked ListRepresentation of Singly Linked ListImplementation of Singly Linked List2. Doubly Linked ListRepresentation of Doubly…