Hi
I am looking for some information regarding VT102 escape codes. Are there any tutorials on this anyone can recommend?
Basically, what I need to do is overwrite these print statements within the for loop to my screen:
for (int i=0;i<5;i++)
{
printf("Enter the current price of the product: ");
scanf("%d", &price);
printf("Enter the number of the product: ");
scanf("%d", &number);
int total price = price*number;
printf("total price is %d", number)
}