First page
Back
Continue
Last page
Graphics
String VS Char Constants
sizeof (“a”) is 2
sizeof ('a') is 1
Initializing with string constants is a good place for the unspecified size array notation [ ].
e.g. char my_name[ ] = “Ray S. Babcock”;