Dealing with Compiler and Linker Errors
Saloni Goyal

Saloni Goyal @blender

About: Extremely curious.

Joined:
Jul 15, 2019

Dealing with Compiler and Linker Errors

Publish Date: Nov 25 '20
1 0

Compiler Errors

  • forgetting to declare the function before calling it
  • not including the header file
  • not declaring the function in the header file

Linker Errors

  • not implementing the function
  • the .cpp file with the function is not getting linked with your main file

These are some of the possible errors that can happen when we start working with more moving parts. As a beginner it is good to actually try and do them deliberately and see what errors we are getting, so the next time you see that error in your code, you'd have an idea of what went wrong.

Please leave out comments with anything you don't understand or would like for me to improve upon.

Thanks for reading!

Comments 0 total

    Add comment