Hi,

How can I test a char value to see if it has been assigned a value? Does that make sense? For example, if I declare a char such as:

char* test;

How can I test if it is empty or has a value? In VB, I can simply do the following:

if test = "" then...

any help would be appreciated..

Dan