Given pointers to char, one can do the following:
char *s = \"data\";
As far as I understand, a pointer variable is declared here, memory i
you can also think it as array , int i[1]={42} where i is a pointer to int
int i[1]={42}