ये कुछ सामान्य keywords हैं, लेकिन C programming language में और भी keywords होते हैं जो विशेष कार्यों के लिए प्रयोग होते हैं।
C programming में कुछ मुख्य keyword होते है जो प्रोग्राममिंग में specific task को perform करने के लिए इस्तेमाल किया जाता हैं।
1. if, else : शर्तों पर आधारित decisions के लिए इतेमाल होता है। जैसे
2. for, while, do: Looping structures को control करने के लिए इस्तेमाल होते हैं। जैसे:-
3. int, char, float, double: Data types को define करने के लिए use होता हैं। Example:
4. switch, case: Multiple conditions के लिए use होता हैं. Example:
5. break, continue: Loops ko control करने के लिए use होता हैं। Example:
6. return: Functions se values ko वापिस भेजने के लिए use होता हैं। Example:
7. const, volatile: Variables ki definitions को modify करने के लिए use होता हैं। Example:
इन keywords का इस्तेमाल c Programming language में specific tasks perfrom करने के लिए होता हैं।