Errors

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
Sure we can help if you could post your code.
What compiler do you use? and if you could post your code, that would be useful.
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?
post your code please
Topic archived. No new replies allowed.