Which command properly allocates memory?
char *a=new char[20];
char a=new char[20];
char a=new char(20.0);
None of the Above