Macros in c

Macros in c Macros are a programming art in C programming through the built-in preprocessor. Generally macros are used to define constant data types, program functions and code snippet elements in detail in C language, any macros code is defined and interpreted by the preprocessor in C language. If you want to use macros in…

Comments Off on Macros in c

File inclusion in c hindi

File inclusion in c hindi C प्रोग्रामिंग में फ़ाइल समावेशन का अर्थ है, किसी एक फ़ाइल की सोर्स सामग्री को दूसरी फ़ाइल में ऐड करना। यह आमतौर पर #include प्रीप्रोसेसर डायरेक्टिव का उपयोग करके किया जाता है। यहाँ फ़ाइल समावेशन का उपयोग मुख्य रूप से बड़ी प्रोग्राम प्रोजेक्ट्स को मैनेज करने के लिए किया जाता…

Comments Off on File inclusion in c hindi

Conditional compilation in c hindi

Conditional compilation in c hindi C में कुछ विशेष प्रोग्राम कंडीशन में कंडीशनल संकलन आपको कुछ कंडीशंस के आधार पर मैक्रोज़ प्रोग्राम कोड के कुछ हिस्सों को प्रोग्राम में ऐड या रिमूव फीचर्स प्रदान करता  है। यह मैक्रोज़ प्रोग्राम कंप्यूटर प्लेटफ़ॉर्म-विशिष्ट कोड, प्रोग्राम डिबगिंग और कोड को कस्टमाइज करने के लिए विशेष रूप से उपयोगी…

Comments Off on Conditional compilation in c hindi

Macros in c hindi

Macros in c hindi मैक्रोज़ सी प्रोग्रामिंग में बिल्ट-इन प्रीप्रोसेसर के माध्यम से एक प्रोग्रामिंग आर्ट है। सामान्य तोर पर मैक्रोज़ का उपयोग सी लैंग्वेज में कांस्टेंट डाटा टाइप, प्रोग्राम फ़ंक्शन और कोड स्निपेट एलिमेंट को डिटेल में डिफाइन करने में किया जाता है, किसी भी मैक्रोज़ कोड को सी लैंग्वेज में प्रीप्रोसेसर द्वारा डिफाइन…

Comments Off on Macros in c hindi

Error handling

Error handling In C Programming File Handling Error Management, particular file errors occurring during file operation in a C program are managed and controlled. Error management detects errors occurring during file operation. Many times, while opening a file, we can manage the errors of failures in file open, read, write, append operations. So let's understand…

Comments Off on Error handling

Error handling in c hindi

Error handling in c hindi सी प्रोग्रामिंग फाइल हैंडलिंग एरर मैनेजमेंट में किसी C प्रोग्राम में फ़ाइल ऑपरेशन के दौरान होने वाले पर्टिक्युअलर फाइल एरर को मैनेज और कण्ट्रोल किया जाता है. एरर मैनेजमेंट से फाइल ऑपरेशन के दौरान होने वाले एरर का पता किया जाता है. कई बार फाइल को ओपन करते समय फाइल…

Comments Off on Error handling in c hindi

Sequential and random file access

Sequential and random file access In file handling operation in C programming, any file access can be divided into two types. Which includes sequential file access and random file access methods. So, let's know both sequential access and random file access methods in file handling in detail in the file program example below. Sequential Access…

Comments Off on Sequential and random file access

File operations (opening, closing, reading, writing)

File operations (opening, closing, reading, writing) File handling in C programming is used for various file operation tasks in C program. By file operation, you can perform file operation tasks like open, close, read, write, etc. in C program. Where you access the file operation function from standard input/output library I/O (stdio.h) header file in…

Comments Off on File operations (opening, closing, reading, writing)
Sequential and random file access in hindi
Stream of binary code design vector

Sequential and random file access in hindi

Sequential and random file access in hindi सी प्रोग्रामिंग में फ़ाइल हैंडलिंग ऑपरेशन में किसी भी फाइल एक्सेस को दो प्रकार में विभाजित किया जा सकता है. जिसमे सिक्वेंशल फाइल एक्सेस और रैंडम फाइल एक्सेस मेथड्स है। तो चलिए निचे फाइल प्रोग्राम एक्साम्प्ल में फाइल हैंडलिंग में दोनों सिक्वेंशल एक्सेस और रैंडम फाइल एक्सेस मेथड्स…

Comments Off on Sequential and random file access in hindi

File operations (opening, closing, reading, writing) in hindi

File operations (opening, closing, reading, writing) in hindi C प्रोग्रामिंग में फ़ाइल हैंडलिंग सी प्रोग्राम में विभिन्न फाइल ऑपरेशन टास्क के लिए उपयोग किए जाते है. फाइल ऑपरेशन से आप सी प्रोग्राम में फाइल को ओपन, क्लोज़, रीड, राइट, आदि फाइल ऑपरेशन टास्क परफॉर्म कर सकते है. जहा आप फाइल ऑपरेशन सी प्रोग्राम स्टैंडर्ड इनपुट/आउटपुट…

Comments Off on File operations (opening, closing, reading, writing) in hindi