C documentation

C Arrays

Introduction to C Arrays मान लीजिये आप एक ऐसा प्रोग्राम बना रहे है जो employees का नाम computer में store करता है। अब …

C Console I/O

Introduction to C Console I/O C language में input और output को 2 तरीके से process किया जा सकता है। एक तो आप console के …

C Constants

Introduction to C Constants Constants वो variables होते है जिनकी value program execution के दौरान किसी प्रकार भी change …

C Data Types

Introduction to C Data Types जब भी आप कोई variable create करते है तो उससे पहले compiler को बताते है की आप किस तरह का …

C Decision Making

Introduction to C Decision Making आप अपने program में कौनसे statements को execute करना चाहते है और कौनसे statements को …

C Error Handling

Introduction to C Error Handling Errors किसी भी program में आ सकती है। इन्हें exceptions भी कहा जाता है। ये वो errors …

C File Handling

Introduction to C File Handling एक file bytes की sequence होती है। File किसी भी data को store करने के लिए यूज़ की जाती …

C Functions

Introduction to C Functions कई बार आपके program में कुछ ऐसे statements हो सकते है जिन्हें आपको compiler से बार बार …

C Header Files

Introduction to C Header Files अभी तक आपने हर C program में header file का प्रयोग किया है। कई बार कुछ ऐसे functions या …

C Looping

Introduction to C Language Looping यदि मै आपसे कहुँ की आपको C language in Hindi 10 बार print करवाना है तो ऐसा आप किस तरह …

C Operators

Introduction to C Operators Variables के अंदर values store करवाकर आप उन variables पर कई प्रकार के operations perform कर …

C Pointers

Introduction to C Pointers Pointers वो variables होते है जो दूसरे variables के address को store करते है। जैसा की आपको …

C Recursion

Introduction to C Recursion C language में recursion एक ऐसी process होती है जिसमें एक function खुद को ही call करता है। …

C Storage Classes

Introduction to C Storage Classes एक storage class variables और functions का scope और lifetime define करती है। Basically …

C Strings

Introduction to C Strings C language में strings create करने के लिए कोई data type available नहीं है। C language में …

C Structures

Introduction to C Structures आप data types के बारे में पहले पढ़ चुके है। Predefined data types (int, char, float आदि) की …

C Type Casting

Introduction to C Type Casting C language में type casting एक ऐसी process होती है जिसमें एक data type के variable की …

C Typedef Keyword

Introduction to C typedef Keyword C language में typedef एक keyword है। यह keyword किसी data type के existing name को …

C Variables

Introduction to C Variables यदि आप किसी data के साथ operations perform करना चाहते है तो इसके लिए सबसे पहले आपको उसे …

Command Line Arguments

Introduction to C Command Line Arguments ऐसे arguments जो किसी C program में main() function को pass किये जाते है …

First C Program

C Program Development Life Cycle C में कोई भी program create करने के 4 steps होते है। ये steps एक निश्चित क्रम में होते …

Introduction to C

C एक structured general purpose programming language है। इसे unix operating system को दोबारा लिखने के लिए develop किया …