/************************************************************************/ /* Set cursor to the middle of 80x25 screen */ /************************************************************************/ cursor_in_middle() { clear_screen(); set_cursor_position(12,40); /* Cursor in middle */ printf("This string starts at row 12 column 40"); }