C Character Set :
जैसा की हम जानते है की प्रत्येक language मे words और statements को लिखने के लिए विभिन्न characters के समूहो का उपयोग होता है जिसके अंतर्गत alphabet ,digit और विशेष प्रकार के symbol का उपयोग होता है उसी प्रकार C भाषा के भी कैरक्टर सेट होते है जो कुल 256 कैरक्टर का समर्थन करती है।
हर c प्रोग्राम मे स्ततेमेंट्स होते है इन स्ततेमेंट्स का निर्माण words के प्रयोग से किया जाता है और इन words का निर्माण c character सेट का उपयोग करके किया जाता है
c language मे निम्न character सेट होते है :------
- Alphabets
- Digits
- Special Symbols
- White Space Character
Alphabets
C language supports all the alphabets from the English language. Lower and upper case letters together support 52 alphabets.
lower case letters - a to z
UPPER CASE LETTERS - A to Z
Digits
C language supports 10 digits which are used to construct numerical values in C language.
Digits - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Special Symbols
C language supports a rich set of special symbols that include symbols to perform mathematical operations, to check conditions and other special symbols.
सी लैड्ग्वेज special symbol के समूह को support करती है जिसका उपयोग mathematical operations, to check conditions,backspaces आदि के लिए किया जाता है
Special Symbols - ~ @ # $ % ^ & * ( ) _ - + = { } [ ] ; : ' " / ? . > , < \ | tab newline space NULL bell backspace verticaltab etc.,
No comments:
Post a Comment