I tried to initialized const char pointer to pointer variable. Following is the way i did it.but once i run the program it thows an error(Pops up "encountered an problem and needs to close... Tell microsoft about this problem...")
const char * FB="test";
const char **Feedback ;
Feedback = &FB;
How can I intialize a value for const char pointer to pointer variable