is 'abc' is character constant in c program
Answers
Answered by
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