Code:

char c[6]={"hello"};

void* data;

data=c;
Is there any way I can get c[4] or c[3] by using data?
I tried cout<< (char*)data[4]; but it doesnt work.