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

Union in c language

Union in c Union is a user defined data type member in C programming. Which specifically stores different data types program variables elements in the same memory storage location. In union C structure where each structure member has its own individual memory storage location. All variable members of the same union data type use the…

Comments Off on Union in c language

Union in c hindi

Union in c hindi यूनियन C प्रोग्रामिंग में एक यूजर डिफाइन डेटा टाइप मेंबर है. जो विशेष तोर पर एक ही मेमोरी स्टोरेज लोकेशन में विभिन्न डेटा टाइप्स प्रोग्राम वेरिएबल्स एलिमेंट्स को स्टोर करती है। यूनियन में सी स्ट्रक्चर जहाँ प्रत्येक स्ट्रक्चर मेंबर्स का अपना इंडिविजुअल मेमोरी स्टोरेज लोकेशन होता है. वही यूनियन डाटा टाइप…

Comments Off on Union in c hindi

Structure pointers

Structure pointers Using pointer operators for structure data type members allows you to efficiently manipulate structure data type members within the declared structure and to access structure members from memory address locations, especially when dynamic memory allocation is needed for a structure or passing a function to a structure. So let's use structure to pointer…

Comments Off on Structure pointers

Nested structures in c

Nested structures in c Nested Structure In C programming, when we declare another sub-structure in a structure. Those which are declared as another structure member inside a structure. They are called nested structure data type. Whenever you define new other types of structure members as data type inside another structure. Nested structures help you to…

Comments Off on Nested structures in c