char to char *

How can I convert char to char *?
1
2
char c='a';
char *d=(char *)c;

but it gives me a warning
[Warning] cast to pointer from integer of different size
The right syntax is &c but want do you want to do with that?

http://www.cplusplus.com/doc/tutorial/pointers/

Topic archived. No new replies allowed.