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

What is output ? #include #include #include #include void myfunc(char** param) { ++param; } void main() { char* string = (char*)malloc(64); strcpy(string, "hello_World"); myfunc(&string)

22/25

What is output ? #include #include #include #include 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 A