yes, but can you tell me what this does?

#include <iostream.h>

int main()
{

*p = “Hello”

while (*p)
{
cout << *(++p) << endl;
}

}