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
Logical operators
Logical operators

Logical operators

Logical operators Logical operators in C programming are used to perform logical operations on the boolean values ​​(true or false) of variables used in the program. Logical operators are generally used to merge or combine multiple programming conditions together or to negate conditions. Types of Logical Operators in C Programming. Logical AND (&&) Operator. A…

Comments Off on Logical operators
Relational operators
Relational operators

Relational operators

Relational operators In C programming language, relational operators are used to compare two or more variable values ​​or expressions declared in the program. Based on the comparison result of the relation operator, the output either returns true (1) value or displays false (0) output value. So let's now know about the relational operators in C…

Comments Off on Relational operators
Arithmetic operators
Arithmetic operators

Arithmetic operators

Arithmetic operators Arithmetic operators in C programming language are used to perform mathematical program operations on programming operands (variables or program values). These operations include adding, subtracting, multiplying, dividing, finding modulus, etc. of program values. Here are the basic arithmetic operators in C programming. Addition (+). Plus operator adds different program variable values ​​or two…

Comments Off on Arithmetic operators
Increment and decrement operators in c
Increment and decrement operators in c

Increment and decrement operators in c

Increment and decrement operators in c C प्रोग्रामिंग में इंक्रीमेंट और डेक्रीमेंट ऑपरेटर का उपयोग किसी प्रोग्राम में डिक्लेअर वैरिएबल के वैल्यू को एक से बढ़ाने या घटाने के लिए किया जाता है। इंक्रीमेंट और डेक्रीमेंट ऑपरेटर किसी भी प्रोग्राम वेरिएबल के डिफ़ॉल्ट वैल्यू को एक से जोड़ने या घटाने के लिए शॉर्टहैंड नोटेशन की…

Comments Off on Increment and decrement operators in c