I'm studying for C test soon, and I will appreciate your help with a few code reading I can't figure out myself, the first one is:
main()
{
char *p = "Hello", *q = "world!";
while (*p * *q)
p++, ++q;
printf("%c", *q - *p);
}
If you guys can help me understand the output and what is going on there that will help me a lot.