char[2] a; not char a[2]; that is incorrect. you should use char a[2] or char* a. array brackets go after the variable name. actually i was wrong you can use chars in pgprint but my next question is can you use arrays like char* a[3] = {"a","b","c"}; ya, you could do t...