What are the alphabets or character set of C programming language?
3 years ago
C Programming
The characters that can be used to form words, numbers and expressions.
The characters in C are grouped into the following categories.
- Letters: Lowercase letters a,b,...,z and uppercase letters A,B,...,Z
- Digits: from 0 to 9
- White spaces: Space, tab(\t), newline(\n), carriage return(\r), etc
Symbols:
~ tilde |
! bang |
% modulus |
& ampersand |
* star or asterisk |
/ division |
( left parentheses |
{ left brace |
[ left bracket |
) right parentheses |
} right brace |
] right bracket |
| vertical bar |
^ caret |
„ single quote |
“ double quotation |
< less than |
> greater than |
: colon |
; semicolon |
\ back slash |
. dot |
, comma |
? question mark |
# hash or pound sign |
_ underscore |
= assignment |
Sanisha Maharjan
Jan 20, 2022