What should the program below print?

			  		

Loading

โœช Choose the correct option.

What should the program below print?


void myfunc(char** param){
++param;
}
int main(){
char* string = (char*)malloc(64);
strcpy(string, "hello_World");
myfunc(&string);
myfunc(&string);
printf("%s
", string);
return 0;
}

A. hello_World
B. ello_World
C. lo_World
D. llo_World