✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the result of executing the following lines of code in C
int main()
{
char *q = NULL;
*q="Hello World";
printf(*q);
return 0;
}