700+ câu trắc nghiệm Ngôn ngữ lập trình C có đáp án - Phần 13

What is output? void myfunc(char** param) { ++*param; } void main() { char* string = (char*)malloc(64); strcpy(string, "hello_World"); myfunc(&string); myfunc(&string); printf("%s\n", string

23/25

What is output? void myfunc(char** param) { ++*param; } void main() { char* string = (char*)malloc(64); strcpy(string, "hello_World"); myfunc(&string); myfunc(&string); printf("%s\n", string); getch(); }

hello_World

ello_World

llo_World

lo_World

Giải thích

Chọn đáp án C