C - Tokens, Identifiers, & Keywords
Introduction to C Tokens C language का syntax कई दूसरी popular languages के द्वारा follow किया गया है, इसलिए C का syntax …
Introduction to C Tokens C language का syntax कई दूसरी popular languages के द्वारा follow किया गया है, इसलिए C का syntax …
Introduction to C Arrays मान लीजिये आप एक ऐसा प्रोग्राम बना रहे है जो employees का नाम computer में store करता है। अब …
Introduction to C Console I/O C language में input और output को 2 तरीके से process किया जा सकता है। एक तो आप console के …
Introduction to C Constants Constants वो variables होते है जिनकी value program execution के दौरान किसी प्रकार भी change …
Introduction to C Data Types जब भी आप कोई variable create करते है तो उससे पहले compiler को बताते है की आप किस तरह का …
Introduction to C Decision Making आप अपने program में कौनसे statements को execute करना चाहते है और कौनसे statements को …
Introduction to C Error Handling Errors किसी भी program में आ सकती है। इन्हें exceptions भी कहा जाता है। ये वो errors …
Introduction to C File Handling एक file bytes की sequence होती है। File किसी भी data को store करने के लिए यूज़ की जाती …
Introduction to C Functions कई बार आपके program में कुछ ऐसे statements हो सकते है जिन्हें आपको compiler से बार बार …
Introduction to C Header Files अभी तक आपने हर C program में header file का प्रयोग किया है। कई बार कुछ ऐसे functions या …
Introduction to C Language Looping यदि मै आपसे कहुँ की आपको C language in Hindi 10 बार print करवाना है तो ऐसा आप किस तरह …
Introduction to C Operators Variables के अंदर values store करवाकर आप उन variables पर कई प्रकार के operations perform कर …
Introduction to C Pointers Pointers वो variables होते है जो दूसरे variables के address को store करते है। जैसा की आपको …
Introduction to C Preprocessor Directives Preprocessor C language का एक बहुत ही powerful tool है। कोई भी C program …
Introduction to C Recursion C language में recursion एक ऐसी process होती है जिसमें एक function खुद को ही call करता है। …
Introduction to C Storage Classes एक storage class variables और functions का scope और lifetime define करती है। Basically …
Introduction to C Strings C language में strings create करने के लिए कोई data type available नहीं है। C language में …
Introduction to C Structures आप data types के बारे में पहले पढ़ चुके है। Predefined data types (int, char, float आदि) की …
Introduction to C Type Casting C language में type casting एक ऐसी process होती है जिसमें एक data type के variable की …
Introduction to C typedef Keyword C language में typedef एक keyword है। यह keyword किसी data type के existing name को …
Introduction to C Variables यदि आप किसी data के साथ operations perform करना चाहते है तो इसके लिए सबसे पहले आपको उसे …
Introduction to C Command Line Arguments ऐसे arguments जो किसी C program में main() function को pass किये जाते है …
C Program Development Life Cycle C में कोई भी program create करने के 4 steps होते है। ये steps एक निश्चित क्रम में होते …
C एक structured general purpose programming language है। इसे unix operating system को दोबारा लिखने के लिए develop किया …