Computer Science, asked by angel38739532, 1 year ago

is 'abc' is character constant in c program

Answers

Answered by brainer9657
1

Answer: Single character constant is the defined internal decimal representation of the given character (assignment) . these can be declared in C language using following code : const char abc = 'A'; When abc will be used in further code, it will output 'A'.

hope it helps u

Similar questions