Do you have a main
function?
Huh. I didn't realize a program needed a main function to compile. Thanks for the assistance!
It needs a main function to be able to link to an executable. (You are getting a linker error, not
a compile error).
you need a main() function where you use your functions.something like
int main()
{
int Number;
struct intStruct Test;
cout << "Enter a number\n"
cin >> Number;
change(Test,Number);
display(Test);
return 0;
}