Just a quick question. I'm trying to make a simple animation for a program in C and i can't find a way to move this object through the console. I'm using printf to draw the figure on the console and i was thinking on use the gotoxy function to make it move but that doesn't seem to move the object. This is the figure:
printf(" / \\");
printf(" // \\\\");
printf(" // \\\\");
printf(" // \\\\");
printf(" || ||");
printf("=======|| [ ] ||=======");
printf("\\\\ || [ ] || //");
printf(" \\\\====|| [ ] ||====//");
printf(" +++++++++");
printf(" // | | | | | \\\\");
What i want to make is that when i select the option of the animation, the rocket needs to make like it's going up. I did a for loop changing the Y values but it didn't work. Any ideas?