|
||||||
| C and C++ C and C++ forum for discussing all forms of C except for C#. These languages are powerful low level languages used for creating Operating Systems, Device Drivers, compilers and much more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
I'm using C in a terminal window. I am printing out the % completed. I want the program to print the percentage in the same place each time so I don't get
0% 1% 2% 3% 4% and so on. I want to move the cursor to the beginning of the same line and overwrite. Is there a way to do this? Thanks |
| Sponsored Links |
|
|
|
|||
|
Are you on windows?
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall |
|
|||
|
Just print a backspace.
Or, on windows, SetConsoleCursor in shell32.dll
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall |
|
|||||
|
hmm.. I've done a bit of research, and you could do it with ansi escape sequences:
Code:
for(int prcnt = 0;prcnt != 100;prcnt++){
printf("%d%%",prcnt);?//prints 1% 2% etc
fputs("\033[A");//this escape code moves the cursor up by one.
}
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Creating a Custom Cursor | ahsan16 | Tutorials | 2 | 01-13-2007 06:03 PM |
| Moving charts fom excel to word. | priorityone | Computer Software/OS | 4 | 01-07-2007 06:19 AM |
| Moving elements in an array | Fischerspooner | General Programming | 9 | 12-12-2006 09:24 PM |
| PR - Moving Sale | Montecarlo | Marketing | 3 | 07-21-2006 11:47 AM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |