Warning: Trying to access array offset on value of type null in /home/u623081920/domains/hindilearn.in/public_html/tutorials.php on line 241

Warning: Trying to access array offset on value of type null in /home/u623081920/domains/hindilearn.in/public_html/tutorials.php on line 244
Reserved Keywords In Hindi - C++ Programming - Hindilearn

आपकी ऑफलाइन सहायता

BACK
49

सी प्रोग्रामिंग

149

पाइथन प्रोग्रामिंग

49

सी प्लस प्लस

99

जावा प्रोग्रामिंग

149

जावास्क्रिप्ट

49

एंगुलर जे.एस.

69

पी.एच.पी.
माय एस.क्यू.एल.

99

एस.क्यू.एल.

Free

एच.टी.एम.एल.

99

सी.एस.एस.

149

आर प्रोग्रामिंग

39

जे.एस.पी.





डाउनलोड पी.डी.एफ. ई-बुक्स
C++ - Reserved Keywords

Reserved Keywords


Reserved Keywords for C++ Programming
asmelsenewthis
autoenumoperatorthrow
boolexplicitprivatetrue
breakexportprotectedtry
caseexternpublictypedef
catchfalseregistertypeid
charfloatreinterpret_casttypename
classforreturnunion
constfriendshortunsigned
const_castgotosignedusing
continueifsizeofvirtual
defaultinlinestaticvoid
deleteintstatic_castvolatile
dolongstructwchar_t
doublemutableswitchwhile
dynamic_castnamespacetemplate

 

C++ KeywordsDescription
asmAssembly Language लिखने के लिए इस्तेमाल किया जाता है |
autoStorage class का एक प्रकार है | जो Local variable के लिए भी इस्तेमाल होता है |
boolboolean variable declare करने के लिए इस्तेमाल होता है | for eg. True और False
breakLoops या statements को break करने के लिए इस्तेमाल होता है |
caseSwitch case statement को इस्तेमाल करने के लिए होता है |
catchthrow से exceptions handle करने के लिए इस्तेमाल होता है |
charcharacter variable declare करने के लिए इस्तेमाल होता है |
classclasses को declare करने के लिए इस्तेमाल होता है |
constConst ये एक स्थिर variable के लिए इस्तेमाल होता है |
const_castConstant variable को cast किया जाता है |
continueLoop को iterate किया जाता है |
defaultSwitch case statement के लिए इस्तेमाल होता है |
deleteDynamic memory allocation के लिए इस्तेमाल होता है |
doएक loop का प्रकार है | जिसके साथ while loop को इस्तेमाल किया जाता है |
doublefloating-point data-type है |
dynamic_castpointer के साथ इस्तेमाल होता है |
elseif के साथ statement को इस्तेमाल किया जाता है |
enumEnumeration data type का 'Keyword' है |
explicitConstructor convert करने के लिए इस्तेमाल होता है |
exporttemplate की definition को export किया जाता है |
externStorage class का एक प्रकार है | जिसका scope global होता है |
falseBoolean की एक value है |
floatFloating-point variable को declare करने के लिए इस्तेमाल होता है |
forLoop का एक प्रकार है |
friendnon-member function; private data में access करने के लिए इस्तेमाल होता है |
gotoएक statement है , जिसमे label होता है |
ifएक statement है | जिससे condition सही है या गलत इसका पता चलता है |
inlinefunction के लिए इस्तेमाल होता है |
intinteger variable को declare करने के इस्तेमाल होता है |
longlong integer variable को declare करने के इस्तेमाल होता है |
mutableएक storage class का प्रकार है |
namespacesame idetifiers(variables, functions, classes) अलग-अलग बताने के लिए इस्तेमाल होता है |
newDynamic memory allocation के लिए इस्तेमाल होता है |
operatorOverloaded operators को declare करने के लिए इस्तेमाल होता है |
privateClass के private members को declare करने के लिए इस्तेमाल होता है |
protectedClass के protected members को declare करने के लिए इस्तेमाल होता है |
publicClass के public members को declare करने के लिए इस्तेमाल होता है |
registerएक storage class का प्रकार है |
reinterpret_castVariable का cast-type change करने के लिए इस्तेमाल होता है |
returnfunction के लिए इस्तेमाल होता है |
shortshort integer variable को declare करने के इस्तेमाल होता है |
signedएक variable modifier है |
sizeofvariable का size return करने के लिए इस्तेमाल होता है |
staticएक storage class का प्रकार है |
static_castएक type_conversion है |
structstructure को define या declare करने के लिए इस्तेमाल होता है |
switchएक statement है |
templateGeneric Program को लिखने के लिए इस्तेमाल होता है |
thispointer को current object पर लाता है |
throwException Handling के लिए इस्तेमाल होता है |
trueBoolean की एक value है |
tryException Handling के लिए इस्तेमाल होता है |
typedefdata type को alias_name देने के लिए इस्तेमाल होता है |
typeidObject का वर्णन किया जाता है |
typenameClass का alternative है |
unionये kayword अपने members को एक ही memory location पर assign किया जाता है |
unsignedunsigned integer variable को declare करने के लिए इस्तेमाल किया जाता है |
usingnamespace के साथ इस्तेमाल किया जाता है |
virtualRuntime polymorphism के लिए इस्तेमाल होता है |
voidये कुछ भी return नहीं करता |