Character array elements must be character literals enclosed in single quotes. Option C uses 'R,G,B' without quotes, which is incorrect syntax - it would be interpreted as variables, not characters. The correct syntax would be char color[3]={'R','G','B'};