example of string constant
Answers
Answered by
1
Answer:
'anyword'
Explanation:
Answered by
0
Text enclosed in double quote characters (such as "example" ) is a string constant. ... The compiler merges a series of adjacent string constants into a single string constant (before automatically adding a null character at the end). For example, "sample" "text" produces the same single block of storage as "sampletext" .
Similar questions