Tell about the character set of C language.
Answers
Answer:
Character set of C language:
The character set of c language defined as the type of character that is used in writing of a source code of a program. C language is a case sensitive language that why each word in a specific case has a specific meaning .These character are divided into different type such as :
- Alphabetic lower case
- Alphabetic Upper case
- Numeric
- Special character
- White spaces
Alphabetic lower case:
This type of data includes lower case alphabets a, b, c up to z.
Alphabetic Upper case :
This type of data include Upper case alphabets A, B, C up to Z.
Numeric :
This type of data consists of Numbers or digit such as 0, 1, 2, 3 . . . 9
Special characters:
This type of data consist of some special character or symbols such as: !, $, %, (), {}, [] etc.
White spaces:
This type of data contain Tab space, single space, new line.