Errors

Apr 9, 2009 at 4:09pm
I am compiling the program and it is saying sucess ful but when i am running the program it is showing an error which says the following:

"error LNK2028: unresolved token (0A000296) "int __cdecl start(int)" (?start@@$$FYAHH@Z) referenced in function "int __cdecl check(int)" (?check@@$$FYAHH@Z)"

Can any one help me to solve this problem
Apr 9, 2009 at 4:23pm
Sure we can help if you could post your code.
Apr 9, 2009 at 5:18pm
What compiler do you use? and if you could post your code, that would be useful.
Apr 9, 2009 at 5:29pm
Looks like you declared a function, called it from another function, but forgot to define it. Therefore the software compiles but the linker cannot find the definition. Did you declare but forget to define a function called start that takes an int param and returns an int? Did you forget to include a library in your linker settings of the project?
Apr 9, 2009 at 5:35pm
post your code please
Topic archived. No new replies allowed.