Dynamic memory allocation (malloc, calloc, realloc, free) in hindi

Dynamic memory allocation (malloc, calloc, realloc, free) in hindi C प्रोग्रामिंग में डायनेमिक मेमोरी एलोकेशन प्रोग्राम को रनटाइम पर मेमोरी का रिक्वेस्ट करने पर नई मेमोरी एलोकेशन, एक्सिस्टिंग मेमोरी को रीलॉक, और malloc फंक्शन द्वारा आवंटित मेमोरी स्पेस को free करने की अनुमति प्रदान करता है. जिससे प्रोग्राम वेरिएबल डेटा के विभिन्न टाइप्स को मैनेज…

Comments Off on Dynamic memory allocation (malloc, calloc, realloc, free) in hindi

Pointer to functions in hindi

Pointer to functions in hindi सी प्रोग्राम में फ़ंक्शन के लिए पॉइंटर एक प्रकार का पॉइंटर मेमोरी एड्रेस लोकेशन वेरिएबल होता है. जो सी प्रोग्राम में डिक्लेअर किसी प्रोग्राम वेरिएबल के बजाय फ़ंक्शन आर्गुमेंट/पैरामीटर का मेमोरी एड्रेस स्टोर करता है। फंक्शन टू पॉइंटर उन प्रोग्रामिंग कंडीशन में विशेष रूप से उपयोगी है, जहाँ आप मौजूदा…

Comments Off on Pointer to functions in hindi

Pointer arithmetic in hindi

Pointer arithmetic in hindi सी लैंग्वेज में पॉइंटर अर्थमेटिक ऑपरेशन C और C++ जैसी लैंग्वेजेज में एक बेसिक फंडामेंटल प्रोग्रामिंग कांसेप्ट है. जिसमें डायरेक्ट सी प्रोग्राम वेरिएबल मेमोरी मैनेजमेंट फीचर्स मिलते है। यह सी प्रोग्रामर को ऐरे और अन्य डेटा स्ट्रक्चर ऑपरेशन्स को कुशलतापूर्वक नेविगेट करने और उन्हें मैनेज करने के लिए पॉइंटर्स में स्टोर…

Comments Off on Pointer arithmetic in hindi

Basics of pointers in hindi

Basics of pointers in hindi पॉइंटर्स C प्रोग्रामिंग में एक फंडामेंटल कांसेप्ट है. जो सी प्रोग्रामर को प्रोग्राम में डिक्लेअर डिफरेंट प्रोग्राम वेरिएबल के मेमोरी एड्रेस के साथ सीधे काम करने की अनुमति देती है। पॉइंटर आपको वेरिएबल डेटा को इनडायरेक्ट रूप से डाटा टाइप वेरिएबल के मेमोरी एड्रेस लोकेशन को एक्सेस करने और उसमें…

Comments Off on Basics of pointers in hindi

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