so, here what's i'm trying to do,
when user enter ant statement, the output result will be cipher to numbers, so, i try to assign character to array, when i try to run the code, error occur at array declaration, here what i've got so far:

Code:
#include<iostream.h>
class Cipher{
private:
char code[1] = A;
char code[2] = B;
char code[3] = C;
char code[4] = D;
char code[5] = E;
...