C Character Set
Types Of Character Set
- Letters
- Digits
- Special Characters
Letters :
- C language comprises the following set of letters to form a standard program. They are:
- A to Z in Capital letters.
- a to z in Small letters.
- In C programming, small latter and caps latter are distinct.
Digits :
- C language comprises the following sequence of numbers to associate the letters. 0 to 9 digits.
Special Characters:
C language contains the following special character in association with the letters and digits.
| Symbol |
Meaning |
| ~ | Tilde |
| ! | Exclamation mark |
| # | Number sign |
| $ | Dollar sign |
| % | Percent sign |
| ^ | Caret |
| & | Ampersand |
| * | Asterisk |
| ( | Lest parenthesis |
| ) | Right parenthesis |
| _ | Underscore |
| + | Plus sign |
| | | Vertical bar |
| \ | Backslash |
| ` | Apostrophe |
| - | Minus sign |
| = | Equal to sign |
| { | Left brace |
| } | Right brace |
| [ | Left bracket |
| ] | Right bracket |
| : | Colon |
| " | Quotation mark |
| ; | Semicolon |
| < | Opening angle bracket |
| > | Closing angle bracket |
| ? | Question mark |
| , | Comma |
| . | Period |
| / | Slash |
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )
