Hi every one . in default cursor move from left to right how can i change direction of cursor in my program
int main()
{
char tile[NO_OF_COLS][NO_OF_ROWS];
char ch1,ch2;
int counter = 0;
system("MODE CON:COLS=80 LINES=50");
gotoxy(35,25);
do
{
You should also chuck the <conio.h> and system() stuff... Bad mojo you know, and use the Console API directly. They are very easy to use. http://www.google.com/search?btnI=1&q=msdn+Console+Functions
You would have to track and update the cursor yourself and where each letter is written to output.
There do exist libraries to do this kind of thing. For example, google "Hebrew console".