C KEYWORDS
A keyword is a reserved word. keywords are the words that convey a special meaning to the c compiler. The keywords cannot be used as variable names.
A list of 32 keywords in c language is given below:
auto |
break |
case |
char |
const |
continue |
default |
do |
double |
enum |
else |
extern |
float |
for |
goto |
if |
int |
long |
return |
register |
signed |
short |
static |
sizeof |
struct |
switch |
typedef |
union |
unsigned |
void |
volatile |
while |
Note: Keywords we cannot use it as a variable name, constant name etc.
C language में keywords pre-defined words हैं। प्रत्येक keyword एक c program में एक specific function करने के लिए होता है। चूंकि keywords compiler के लिए नाम referred किए जाते हैं, इसलिए उन्हे variable name के रूप में use नहीं किया जा सकता है।
नोट: कीवर्ड को हम वेरिएबल नाम, स्थिर नाम आदि के रूप में उपयोग नहीं कर सकते हैं।