A char has single quotes ('), whereas a string has double quotes ("). See the manual:
https://zorro-project.com/manual/en/aarray.htm

Try this:
Code
string cFirst = "3CCC3";
if (cFirst[1] == 'C') printf("AAAA");
if (cFirst[0] == '3') printf("33333");