我在某cpp文件中定义个全局的指针数组Char *a[100]; 
为什么会提示 error C2143: syntax error : missing ';' before '*'
 error C2501: 'Char' : missing storage-class or type specifiers
error C2501: 'a' : missing storage-class or type specifiers
还有在另一个cpp中是用extern *a[100]来访问吗?