El archivo de encabezado graphics.h contiene la función outtext() que muestra el texto en la posición actual.
Sintaxis:
void outtext(char *string);
Ejemplos:
Input : string = "Hello Geek, Have a good day !" Output : Input : string = "GeeksforGeeks is the best !" Output :
Nota: no utilice funciones de modo de texto como printf mientras trabaja en modo de gráficos. Asegúrese de que el texto no vaya más allá de la pantalla mientras usa outtext.
A continuación se muestra la implementación de la función outtext():
// C Implementation for outtext() #include <graphics.h> // driver code int main() { // gm is Graphics mode which is // a computer display mode that // generates image using pixels. // DETECT is a macro defined in // "graphics.h" header file int gd = DETECT, gm; // initgraph initializes the // graphics system by loading a // graphics driver from disk initgraph(&gd, &gm, ""); // outtext function outtext("Hello Geek, Have a good day !"); getch(); // closegraph function closes the // graphics mode and deallocates // all memory allocated by // graphics system . closegraph(); return 0; }
Producción :
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA