Answer:
void main(){
char*[] cp_arr= new char*[20];
char ch;
int i=0;
for(ch='A';ch<='Z';ch++){
*cp_arr[i]=ch;
i++;
}
}
Explanation:
we are taking a char array of pointers and iterating a loop to store A to Z values in that array in the mentioned order