Because the display(int,int,int) function is not defined.
He means you should add this to the beginning of your program:
short display(int, int, int);
and add this to the end of your program:
short display(int a, b, c)
{
cout << a << " " << b << " " << c << endl;
return 0;
}
To get it to 'tick' look into the getconsolecursorposition functions declared in windows.h and also setconsolecursorposition.