Interview Questions

What does it mean when the linker says that _end is undefined?

C Interview Questions and Answers


(Continued from previous question...)

What does it mean when the linker says that _end is undefined?

That message is a quirk of the old Unix linkers. You get an error about _end being undefined only when other symbols are undefined, too--fix the others, and the error about _end will disappear.

(Continued on next question...)

Other Interview Questions