wherey


conio.h


/*
Write a program in C for wherey
*/

#include<stdio.h>
#include<conio.h>

main()
{
   int y;

   printf("Hello\n");

   y = wherey();

   printf("Vertical cursor position from where this text appears = %d",y);

   getch();
   return 0;
}

Post a Comment

0 Comments