how does one set an array of pointers to be empty. I have declared a char array with the following syntax
char fisrtname[65]=""; and when i cout this it is empty
i try to declare an array of pointers like so
char *gettype[8]=""; but it says invalid initializer? my goal is to have an empty array and then using an index copy character arrays into each pointer in my getype array. I need my getype array of pointers to be empty. Any assistance would be appreciated