char* myFunc (char *ptr)
{
ptr += 3;
return (ptr);
}
int main()
{
char *x, *y;
x = HELLO;
y = myFunc (x);
printf (y = %s n, y);
return 0;
}
What will be the output when the sample code given above is executed?
Reveal answer
Fill a bubble to check yourself