OK.. this is a console app...

-------------
#include <stdio.h>
#include <iostream.h>

void main(void)
{
int i=0;

printf( "%i", i );

for( i=0; i<10; i++ )
{
// update %i with value of i
}
}
-------------

now i want to have it count to 10... but just update the current line where the printf is printing i (like it will show 1, then replace 1 with 2, then replace 2 with 3, etc etc...) .... but i dont know how to update the current line..... anyone know how?