I remember seeing in a random videotutorial that the boy used in his code "Press any key to start the execution, Esc to exit" and I used to think something with a tag called getch or similar, I must implement that in my project and That is one of the parameters, Does anyone know how it is done? I do not pass from the primitive code of:
int main ()
{
printf("Oprima 1 para realizar la ejecucion, De lo contrario pulse cualquier
tecla");
scanf("%d", &Opcion);
while(Opcion==1)
{
// una ejecucion cualquiera
printf("Desea ejecutar nuevamente?");
scanf("%d", &Opcion);
}
}
Thanks in advance