keyword
Print Friendly, PDF & Email

ये कुछ सामान्य keywords हैं, लेकिन C programming language में और भी keywords होते हैं जो विशेष कार्यों के लिए प्रयोग होते हैं। 

C programming में कुछ मुख्य keyword होते है जो प्रोग्राममिंग में specific task को perform करने के लिए इस्तेमाल किया जाता हैं।

1. if, else : शर्तों पर आधारित decisions के लिए इतेमाल होता है। जैसे

if keyord

2. for, while, do: Looping structures को control करने के लिए इस्तेमाल होते हैं। जैसे:-

while do

3. int, char, float, double: Data types को define करने के लिए use होता हैं। Example:

integer

4. switch, case: Multiple conditions के लिए use होता हैं. Example:

switch

5. break, continue: Loops ko control करने के लिए use होता हैं। Example:

break

6. return: Functions se values ko वापिस भेजने के लिए use होता हैं। Example:

return

7. const, volatile: Variables ki definitions को modify करने के लिए use होता हैं। Example:

इन keywords का इस्तेमाल c Programming language में specific tasks perfrom करने के लिए होता हैं।

Leave a Reply