Keywords in C in Hindi – C Keywords in Hindi

इस Article में Keywords in C in Hindi – C Keywords in Hindi के बारे में जानेगे
Keywords in C in Hindi
Keywords predefined Reserved Words है। जिनका Use Programing Language में एक विशेष Special Work के लिए होता है। जैसे – int , float char इसके अतिरिक्त और भी बहुत सारे Keywords है। Variable name create करते समय इन Keywords को Use नहीं कर सकते क्युकी Compiler को Special Meaning समझता है। c में Total 32 keywords है।
Keywords | Use | |
---|---|---|
auto | Auto Variable को Create करता है। | |
break | Switch Statement में Use होता है। | |
case | Switch Statement में Use होता है। | |
char | Character Data type है। Character value Store करता है। | |
const | Const Variable Create करता है। | |
continue | Switch Statement में Use होता है। | |
default | Switch Statement में Use होता है। | |
do | Condition Statement में Use होता है। | |
double | Double data type है। | |
else | If else Condition Statement में use होता है। | |
enum | ये भी एक Data type है। जिसका Use Integral Constants को name assign करने के लिए किया जाता है। |
|
extern | Extern Type Variable को Create करता है। | |
float | float एक Data type है। जिसका use दशमलव संख्या के लिए किया जाता है। | |
for | इसका Use Condition Statement में होता है। | |
goto | इसका Use Statement पे Jump करने के लिए होता है। | |
If |
|
|
short | Short data type है। | |
signed | ये भी Data Type में Use होता है। | |
size of | Operator के Size को Compute करने के लिए Use किया जाता है। | |
static | Static Variable को Create करता है। | |
int | ये भी एक Data type है। जो Integer value को Store करता है । | |
long | ये भी एक Data Type है। | |
register | अगर Variable को Memory register में Assign कराना हो तो इसका Use किया जाता है। | |
return | ये Define करता है। की program value return कर रहा है या नहीं। | |
struct | Data Type में File के Formate को Declare करता है। | |
switch | Switch Statement में Use होता है। | |
typedef | User Define Data Type को New Name देने के लिए Use होता है। | |
union | एक Special type Variable Declare करता है। | |
unsigned | Data Type में Memory के आधार पर बनाये गए है। | |
void | जब कोई भी Value Return न कराना हो तो void keyword use करते है। | |
volatile | ये Compiler को बताता है variable की Value किसी भी Time Change हो सकती है। | |
while | Condition Statement में Use होता है। |