hello friend, i am a new programmer, i have probem use gotoxy in visual c++, help me please :cheesy:
bento 0 Newbie Poster
Recommended Answers
Jump to PostMS-Windows, use these console functions. First, get the handle to the consol window with GetConsoleWindow() then move the cursor to desired location with SetConsoleCursorPosition().
Jump to PostAh, the old Turbo C bad habit clrscr() function. First try to make your program without it, it is rarely needed! You can replace one bad habit with another and use:
#include <stdlib.h> void clrscr(void) { system ("cls"); //system ("clear"); // for Unix }
A more official …
All 5 Replies
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
vijayan121 1,152 Posting Virtuoso

GreenDay2001
Ene Uran 638 Posting Virtuoso
SpS commented: Helps ~~SpS +3
Ene Uran 638 Posting Virtuoso
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.