Computer Science, asked by siddharthapal1314, 7 months ago


char ch ="A"; variable or not​

Answers

Answered by omtripathi123
1

Answer:

Variable

Explanation:

As we all know there is Char and Varchar used in Computer science So Char is variable

Answered by Anonymous
1
Whenever a character value is given to a variable of type char, its ASCII value gets stored (and not the character value). While printing a character, if we use %c, then its character value will be displayed and if we use %d, then its integer value (ASCII value) will be displayed.
Similar questions