Hi,
I am having a problem with this error message. I searched similar issues but couldnt find one that solved my problem. I am using Microsoft visual studio 2010.
This is the complete error that I get:
Error 1 error LNK2019: unresolved external symbol "void __cdecl Compute(struct incomeInfo * const,int)" (?Compute@@YAXQAUincomeInfo@@H@Z) referenced in function _main G:\C ++\Compute Income_Wells\Compute Income_Wells\compute income.obj Compute Income_Wells
Function names (and pretty much everything else) are case-sensitive in C++. You have a prototype called Compute and a function call to Compute yet you have a function definition compute. You need to change the function definition compute to a capital C.