I saw this in Apple's framework files
enum
{
kAudioFormatLinearPCM = 'lpcm',
kAudioFormatAC3 = 'ac-3'
}
What is the type of 'lpcm'
and 'ac-3'
?
With a single character in the single quote like this 'a'
, I know it is a char; With double quotes like this "text"
, I know it is a string.
But this? This makes me confused.