char ch ="A"; variable or not
Answers
Answered by
1
Answer:
Variable
Explanation:
As we all know there is Char and Varchar used in Computer science So Char is variable
Answered by
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