Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.70K
1 Posted Topic
try this it will work! #include<iostream> #include<windows.h> using namespace std; void gotoxy(int a, int b); int main() { cout << "Cursor before:" << endl; gotoxy(23, 12); cout << "Cursor after:"; } void gotoxy(int x, int y) { HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE); COORD coord; coord.X = x; coord.Y = y; SetConsoleCursorPosition(hStdOut, …
The End.
Faisal_11