0% found this document useful (0 votes)
68 views1 page

C Character Set: Uppercase Letters Lowercase Letters A-Z Digits Special Characters Tilde

The C character set includes uppercase and lowercase letters, digits, special characters like !@#$%^&*(), and whitespace characters like spaces, tabs and newlines. Characters are grouped into alphabets, digits, special characters, and whitespace. The C character set provides the basic elements for building programs in the C computer language.

Uploaded by

areeba tariq
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
68 views1 page

C Character Set: Uppercase Letters Lowercase Letters A-Z Digits Special Characters Tilde

The C character set includes uppercase and lowercase letters, digits, special characters like !@#$%^&*(), and whitespace characters like spaces, tabs and newlines. Characters are grouped into alphabets, digits, special characters, and whitespace. The C character set provides the basic elements for building programs in the C computer language.

Uploaded by

areeba tariq
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

C Character Set

The character set is the fundamental raw material of any language and they are used to represent information.
Like natural languages, computer language will also have well defined character set, which is useful to build the
programs. The characters in C can be grouped into the following categories:
a. Alphabets / Letters
b. Digits
c. Special Characters
d. White Spaces

Uppercase letters A-Z


Lowercase letters a-z
Digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Special Characters

~ tilde = equal to " quotation mark


& ampersand
% percent sign ; semicolon
$ dollar sign ] right bracket
| vertical bar
/ slash ! exclamation mark
@ at symbol
( left parenthesis , comma
+ plus sign
* asterisk { left flower brace
< less than
_ underscore \ back slash ? Question mark
- minus sign ) right parenthesis . dot operator
> greater than ′ apostrophe } right flower brace
^ caret : colon
# number sign [ left bracket

Whitespace Characters
blank space Single space inside ' ' or " "
horizontal tab \t
carriage return \r
new line \n
form feed \f

Note: Backslash character constants will be discussed with constants

You might also like