int wherey();
==== description of wherey ====
return current vertival cursor position
#include
#include
int main( void )
{
int y;
printf("The answer is almost 42\n");
y = wherey();
printf("vertical cursor position from where this text appears = %d\n",y);
return 0;
}
===== output of wherex example =====
The anser is almost 42
vertical cursor position from where text appears = 4
{{:c:conio.h:wherey.png?nolink|}}