what is different between characters constant and string constant
Answers
Answered by
1
Explanation:
A character constant like '!' represents a single character. A string literal between double quotes usually represents multiple characters. A string literal like "!" seems to represent a single character, but it actually contains two: the ! you requested, and the \0 which terminates all strings in
Similar questions