I have unresolved externals after saving

I’m having these two errors whenever I try and build it and I get these errors:

LNK2019 unresolved external sybol “void_cdecl PrintIntro(void)” (?PrintIntro@@YAXXZ) referenced in function_main
LNK1120 1 unresolved externals

As far as I can tell my code is what I viewed.

Here’s my code:

You have declared a function called PrintIntro and never defined it because you called the one below main PrintInfo. And just in case you didn’t see it in that sentence either one is InFO the other is InTRO

1 Like

Wow! Haha! Thank you. I spent HOURS trying to get this fixed!

Yup… I’m a dummy.

Cheers!

DF~>

Well this should help you next time, LNK2019, LNK means a linker error not a compilation error, " unresolved external sybol" usually means you declared something but never defined it.

1 Like

Privacy & Terms