Preprocessor Directives in C
Preprocessor Directives Preprocessor Directives कुछ विशेष प्रकार की Instructions होती है जो Compilation Step के पहले पूर्ण होती है, Preprocessor […]
Preprocessor Directives in C Read Post »
Preprocessor Directives Preprocessor Directives कुछ विशेष प्रकार की Instructions होती है जो Compilation Step के पहले पूर्ण होती है, Preprocessor […]
Preprocessor Directives in C Read Post »
Union Union एक used defined data type है struct की तरह, जो की अलग-अलग प्रकार का डेटा रख सकता है,
File से data read करना, write करना, अपडेट करना, file को create और delete करना आदि programming में file handling
File handling in c Read Post »
Data Type Format Specifier Size(Byte) Keyword Character %c 1 char Integer %d, %i 4 int Floating %f 4 float Double
Data types in C (हिंदी) Read Post »
Array एक प्रकार का derived data type है जो को एक बार एक से अधिक element (values) को स्टोर कर सकता है। array एक बार में
एक ही प्रकार (same data type) के data elements को store कर सकता है
Array in c (हिंदी) Read Post »
Function कोड का एक ब्लॉक है जिसका उपयोग किसी विशिष्ट कार्य को करने के लिए किया जाता है। जिस प्रकार के हम printf function का उपयोग कुछ प्रिंट करने या display के लिए करते हैं।