top of page

C Keywords - सी कीवर्ड

What Is Keywords? ( कीवर्ड क्या है? )

C Tutorial - C Keywords & What Is Keywords? | Creative Bloke

कीवर्ड पूर्वनिर्धारित (Predefined), आरक्षित (Reserved) शब्द हैं, जिनका उपयोग प्रोग्रामिंग में किया जाता हैं और जिनका कंपाइलर के लिए विशेष अर्थ होता हैं। कीवर्ड सिंटैक्स का एक हिस्सा हैं और इन्हें पहचानकर्ता (identifier) के रुप में उपयोग नहीं किया जा सकता हैं।

For Example;

int = money;

यहां पर इस उदाहरण में int एक कीवर्ड हैं, जो इंगित करता हैं कि money जो कि int (integer) प्रकार का एक वेरिएबल (चर) हैं। चूंकि C एक केश सेंसिटिव (Case Sensitive) भाषा हैं। सभी कीवर्ड को लोअरकेस में लिखें जानें चाहिए। ANSI C में अनुमत सभी कीवर्ड की सूची यहां निचे दी गई हैं।


C All Keywords List

auto

double

int

struct

break

else

long

switch

case

eum

register

typedef

char

extern

return

union

continue

for

signed

void

do

if

static

while

default

goto

sizeof

volatile

const

float

short

unsigned


Comments


bottom of page