#include stdio.h
void first()
{
printf("Hello World");
}
void main()
{
void *ptr() = first;
ptr++
ptr();
}
Determine the output.

Posted on by