Keywords
Keywords, Predefined Programming Language में use किए जाने वाले Reserved Word हैं, जो Compiler के लिए Special Meaning रखते हैं। Keywords Syntax का Part हैं, और इन्हें Identifier के रूप में use नहीं किया जा सकता है। C Language में कुल 32 Keywords होते हैं, जोकि निम्नलिखित है-
auto | double | int | struct |
break | else | long | switch |
case | enum | register | typedef |
char | extern | return | union |
continue | for | signed | void |
do | if | static | while |
default | goto | sizeof | volatile |
const | float | short | unsigned |
Example:
Output:
Constants
Constants वे Value हैं, जो किसी Progrma के Execution के दौरान Fixed रहते हैं। उनका use उन Information को Store करने के लिए किया जाता है, जिन्हें Future में Modify ना किया जाना हो| C में Constants विभिन्न Type के हो सकते हैं, जिनमें Integer, Floating-Point, Character, और String शामिल हैं।
Syntax:
Types of Constant:
Integer Constant
- Integer Constant साधारण Variable की तरह काम करता है |
- Integer Constant, Positive (+) या Negative (-) हो सकता है |
- Integer Constant की Range -32768 से 32767 तक होती है |
Example:
Output:
Character Constant
- Character Constant Normal Variable की तरह काम करता है |
- Character Constant सिर्फ Single Character लेता है|
- Escape Sequences के साथ भी Character Constant use किया जाता है |
Example:
Output:
Floating-Point Constant
- Floating-Point Constant, Normal Float Variable की तरह ही काम करता है |
- Floating-Point Constant में Decimal Point (.) होता है |
- अगर Floating-Point Constant की Value Integer Type की हो तो वो Decimal Point (.) लेता है |
Example:
Output:
String Constant
- String Constant की Value Double Quotation Mark (” “) के अंदर लिखी जाती है |
- String Constant Single और Multiple Characters लेता है |
- String Constant Escape Sequences के साथ भी use करते है |
Example:
Output:
Variables
C Programming में Variable Memory में एक Named Location है, जो एक Value Store करता है। Variable विभिन्न प्रकार के Data को Represent कर सकते हैं, जैसे Integers, Floating-Point Numbers, Characters। प्रत्येक Variable का एक Unique Name होता है, जिसका Use Programmer उसके Store Value को Access और Modify करने के लिए करते हैं। एक Variable बनाने की Process में उसका Name Declare करना और उसका Data Type Specify करना Included है।
Declaring Variables in C
C में एक Variable Declare करने के लिए उसका Name और Data Type Specify करना होता है| जहां data_type यह Specify करता है, कि Variable किस Type का Data Hold कर सकता है। Example में Integer के लिए int, Floating-Point Numbers के लिए Float, Character के लिए char इत्यादि Include हैं। तथा Variable Name को C Programming के Naming Rules को Follow करना चाहिए| जिसके अनुसार, Variable एक Letter तथा Underscore(_) Symbole से शुरू हो सकता है, तथा इसमें Character, Digit और Underscore हो सकते हैं।
Syntax:
Example:
Types of Variables in C
C में Variables को उनके Properties के Base पर कई Type में Categorized किया जा सकता है| जोकि निम्नलिखित हैं –
-
Local Variable
Local Variable किसी Function या Code के Block केअंदर Declate किए जाते हैं, और केवल उस Specific Scope के भीतर ही Accessible होते हैं। Local Variable का Scope Limited होता है, और Code के Function या Block के बाहर Accessable नहीं होते है।
Example:
इस Example में, localVar एक Local Variable है, जिसे केवल main Function के अंदर ही Access किया जा सकता है।
-
Global Variable
Global Variable किसी भी Function के बाहर Declare किए जाते हैं, और इन्हें पूरे Program में Access किया जा सकता है। Program के Execution Time के लिए Local Variable की तुलना में Global Variable का Scope बड़ा होता है।
Example:
इस Example में, globalVar एक Global Variable है, जिसे main Function के अंदर Access किया जा सकता है।
-
Constants
Constants वे Variable होते हैं, जिनके Value Initially, Initlize होने के बाद बदले नहीं जा सकते। C में const Keywords का use करके Constants को Define किया जाता हैं।
Example:
इस Example में, pi एक Constant है, जिसकी Value को Modify नहीं किया जा सकता है।
-
Static variable
Static Variable Local Variable हैं, जो Function Call में अपने Value Hold करके रखते हैं। उन्हें static
Keyword का use करके Declare किया जाता है। Static Variable को Program के किसी भी Part में Access एवं Modify किया जा सकता है|
Example: