función outtextxy() en C
El archivo de encabezado graphics.h contiene la función outtextxy() que muestra el texto o la string en un punto específico (x, y) en la pantalla. Sintaxis: void outtextxy(int x, int y, char *string); where, x, y are coordinates of the point and, third argument contains the address of string to be displayed. Ejemplos: Input : … Continue reading «función outtextxy() en C»