Recursion

Recursion Recursion function is a powerful programming technique or method in C language where a function declared in a C program calls itself directly or indirectly to solve a larger problem by referring to a smaller example model of the same function problem. In C language, the use of recursion function is particularly useful for…

Comments Off on Recursion

Return values

Return values In C programming functions can return argument values ​​to the function calling source code, so that the function can calculate the argument results, and pass them back to the function calling for further function use or processing. So let's see how you can declare a function that returns function argument values, use function…

Comments Off on Return values

Passing arguments to functions

Passing arguments to functions By passing a parameter argument list to a function in C programming, you can provide input data values ​​to the function so that it can perform its user-defined task based on the argument parameter list data values. The arguments or parameter list given to a function in C language can be…

Comments Off on Passing arguments to functions

Declaration and definition

Declaration and definition Functions play an important role in C programming in organizing program code into smaller blocks for managing and reusing it and in calling individual program arguments. Functions are used as an alternative to modular programming in C programming. Where a large program project is declared in small modules or function blocks and…

Comments Off on Declaration and definition

Recursion in c hindi

Recursion in c hindi रिकर्सन फंक्शन सी लैंग्वेज में एक शक्तिशाली प्रोग्रामिंग टेक्निक या मेथड है. जहाँ सी प्रोग्राम में डिक्लेअर एक फ़ंक्शन किसी बड़ी प्रॉब्लम को हल करने के लिए डायरेक्ट या इनडायरेक्ट रूप से अपने आप खुद को कॉल करता है. जो कि उसी फंक्शन प्रॉब्लम के छोटे एक्साम्प्ल मॉडुल के रेफ़्रेन्स में…

Comments Off on Recursion in c hindi

Return values in c hindi

Return values in c hindi C प्रोग्रामिंग फंक्शन में फ़ंक्शन कॉलिंग सोर्स कोड में आर्गुमेंट वैल्यू को लौटा सकते हैं, जिससे की फंक्शन आर्गुमेंट रिजल्ट की गणना कर सकते हैं, और उन्हें आगे फंक्शन उपयोग या प्रोसेसिंग के लिए वापस फंक्शन कालिंग में भेज सकते हैं। तो चलिए जाने की आप C में प्रोग्राम फंक्शन…

Comments Off on Return values in c hindi

Passing arguments to functions in c hindi

Passing arguments to functions in c hindi फ़ंक्शन को C प्रोग्रामिंग में पैरामीटर आर्गुमेंट लिस्ट पास करने से आप फ़ंक्शन को इनपुट डेटा वैल्यू प्रदान कर सकते हैं. ताकि वह आर्गुमेंट पैरामीटर लिस्ट डेटा वैल्यू के आधार पर अपना फंक्शन यूजर डिफाइन टास्क कर सके। सी लैंग्वेज में फ़ंक्शन को दिए जाने वाले आर्गुमेंट या…

Comments Off on Passing arguments to functions in c hindi

Declaration and definition of Function in hindi

Declaration and definition of Function in hindi फ़ंक्शन सी प्रोग्रामिंग में प्रोग्राम कोड को मैनेज और रीयूज़ करने के लिए छोटे छोटे ब्लॉक में व्यवस्थित करने में और इंडिविजुअल प्रोग्राम आर्गुमेंट कालिंग में महत्वपूर्ण भूमिका निभाते हैं। वैसे फंक्शन को सी प्रोग्रामिंग में मॉडुलर प्रोग्रामिंग के विकल्प के तोर पर इस्तेमाल किया जाता है. जहा…

Comments Off on Declaration and definition of Function in hindi

Multi-dimensional arrays

Multi-dimensional arrays Multi-dimensional arrays in C programming allow you to store array data types in more than one dimension. Here multi-dimensional arrays involve storing, displaying or processing array elements in a table or matrix form. Where essentially declaring array elements is a matrix or table-like structure format of variable elements. So let’s see how we…

Comments Off on Multi-dimensional arrays

Accessing array elements

Accessing array elements Accessing array elements in C language is a simple process, and in this, square brackets [ ] are used after the array name. Which contains the index memory address location of that declared array element. Which you want to access or process in the current program. So let's access array elements in…

Comments Off on Accessing array elements