Home / Programs / Character constant in c program
Programming Example

Character constant in c program

👁 1,275 Views
💻 Practical Program
📘 Step by Step Learning

A character constant is a single character, enclosed in single quotation marks.

e.g., ‘A’  ‘B’ ‘1’

Program Code

#include<stdio.h>
#include<conio.h>
int main()
{
const char a = ‘X’;
clrscr();
printf(“Value of a  = %c  , a ”);
getch();
return 0;
}

Output


Value of a = X

Explanation

A character constant is a single character, enclosed in single quotation marks.

e.g., ‘A’  ‘B’ ‘1’

Characters are stored internally in computer as coded set of binary digits, which have positive decimal integer equivalents. The value of a character constant is the numeric value of the character in the machine’s character set. This means that the value of a character constants can vary from one machine to the next, depending on the character set being used on the particular machine. For example, on ASCII machine the value of ‘A’ is 65 and on EBCDIC machine it is 193.

How to learn from this program

First read the algorithm, then study the program code line by line. After that, compare the code with the output and finally go through the explanation. This approach helps learners understand both the logic and the implementation properly.