Declaration and initialization

Declaration and initialization An array is a homogeneous data structure in C programming that allows the C programmer to index or store a fixed-size sequence of elements of the same data type. Arrays in C language provide a way to organize integer, float, character, or string data types that can be accessed and manipulated using…

Comments Off on Declaration and initialization

Multi-dimensional arrays in hindi

Multi-dimensional arrays in hindi मल्टी-डायमेंशनल ऐरे C प्रोग्रामिंग में आपको एक से अधिक डायमेंशनल में ऐरे डेटा टाइप संग्रहीत करने की अनुमति देते हैं. यहाँ मल्टी-डायमेंशनल ऐरे में एक से अधिक ऐरे टेबल या मैट्रिक्स फॉर्म में ऐरे एलिमेंट्स को स्टोर,डिस्प्ले या प्रोसेसिंग करना होता है. जहा अनिवार्य रूप से डिक्लेअर ऐरे एलिमेंट वेरिएबल एलिमेंट्स…

Comments Off on Multi-dimensional arrays in hindi

Accessing array elements in hindi

Accessing array elements in hindi सी लैंग्वेज में ऐरे एलिमेंट्स को एक्सेस करना एक सिंपल प्रोसेस है, और इसमें ऐरे नाम के बाद स्क्वायर ब्रैकेट [ ] का उपयोग किया जाता है. जिसमें उस डिक्लेअर ऐरे एलिमेंट का इंडेक्स मेमोरी एड्रेस लोकेशन होती है. जिसे आप मौजूदा प्रोग्राम में एक्सेस या प्रोसेस करना चाहते हैं।…

Comments Off on Accessing array elements in hindi

Declaration and initialization array In Hindi

Declaration and initialization In Hindi ऐरे C प्रोग्रामिंग में एक सजातीय या सामान प्रकार का डेटा स्ट्रक्चर है. जो सी प्रोग्रामर को समान डेटा प्रकार के एलिमेंट्स के एक निश्चित साइज के सीक्वेंस को इंडेक्स या संग्रहीत करने की अनुमति देती है। सी लैंग्वेज में ऐरे इन्टिजर,फ्लोट, करैक्टर, या स्ट्रिंग    डेटा टाइप को व्यवस्थित करने…

Comments Off on Declaration and initialization array In Hindi

Break and continue statements

Break and continue statements Break and continue statements in C programming language are program code control flow statements. These are used by C programmer to change the normal flow of program execution within a program loop. In normal language break statement breaks the execution of C program code. Whereas continue statement continues the break loop…

Comments Off on Break and continue statements

Loops (while, do-while, for)

Loops (while, do-while, for) In C programming language, loops are used to repeatedly execute a block of a particular program code in the program. Until a specified program condition given in the current program is fully executed. There are mainly 3 types of loops in C programming. Which are used by the C developer based…

Comments Off on Loops (while, do-while, for)

Decision making (if-else, switch-case)

Decision making (if-else, switch-case) The process of making decisions based on the design program variables in C programming is facilitated and easy through conditional statements like if-else and switch-case. If-else statements help you to apply any programming logic in true or false order. In the same switch-case statement, you can print or select multiple switch-case…

Comments Off on Decision making (if-else, switch-case)

Break and continue statements in c hindi

Break and continue statements in c hindi सी प्रोग्रामिंग लैंग्वेज में ब्रेक और कंटिन्यू स्टेटमेंट्स प्रोग्राम कोड कण्ट्रोल प्रवाह स्टेटमेंट्स हैं. जिनका उपयोग सी प्रोग्रामर किसी प्रोग्राम लूप के भीतर प्रोग्राम एक्सेक्युशन के सामान्य प्रवाह को बदलने के लिए करता है। सामान्य लैंग्वेज में ब्रेक स्टेटमेंट सी प्रोग्राम कोड के एक्सेक्युशन को ब्रेक करता है.…

Comments Off on Break and continue statements in c hindi

Loops (while, do-while, for) In c Hindi

Loops (while, do-while, for) In c Hindi सी प्रोग्रामिंग लैंग्वेज में लूप का उपयोग प्रोग्राम में किसी पर्टिकुलर प्रोग्राम कोड के एक ब्लॉक को बार-बार एक्सेक्यूट करने में किया जाता है. जब तक कि मौजूदा प्रोग्राम में दी गई एक निर्दिष्ट प्रोग्राम कंडीशन पूरी तरह से एक्सेक्यूट न हो जाए। C प्रोग्रामिंग में लूप मुख्य…

Comments Off on Loops (while, do-while, for) In c Hindi
Decision making (if-else, switch-case) In c Hindi
Decision making (if-else, switch-case) In c Hindi

Decision making (if-else, switch-case) In c Hindi

Decision making (if-else, switch-case) In c Hindi सी प्रोग्रामिंग में डिज़ाइन प्रोग्राम वेरिएबल के आधार पर निर्णय लेने की प्रक्रिया if-else और switch-case जैसे कंडीशनल स्टेटमेंट्स के माध्यम से सुगम और आसान होती है। if-else स्टेटमेंट आपको किसी भी प्रोग्रामिंग लॉजिक को ट्रू या फाल्स आर्डर में अप्लाई करने में हेल्प करते है. वही switch-case…

Comments Off on Decision making (if-else, switch-case) In c Hindi
Increment and decrement operators
Increment and decrement operators

Increment and decrement operators

Increment and decrement operators Increment and decrement operators in C programming are used to increase or decrease the value of a variable declared in a program by one. Increment and decrement operators are used as a shorthand notation to add or subtract one from the default value of any program variable. So let’s learn about…

Comments Off on Increment and decrement operators

Assignment operators

Assignment operators Assignment operator in C language is used to assign a value to a variable declared in the program. Assignment operator is mainly used to store the result of a program expression or value in a variable. So let's know the assignment operator in C language. Assignment (=) operator. Example. int p; p =…

Comments Off on Assignment operators