Basic and Advance C Question:
Download Questions PDF

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

Answer:

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.

Download C Programming Interview Questions And Answers PDF

Previous QuestionNext Question
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?What is the difference between memcpy and memmove?