📜  C语言中的outtext()函数

📅  最后修改于: 2021-05-25 21:29:06             🧑  作者: Mango

头文件graphics.h包含outtext()函数,该函数在当前位置显示文本。

句法 :

void outtext(char *string);

例子 :

输入: 字符串 =“ Hello Geek,祝你有美好的一天!”输出 : 输入: 字符串 =“ GeeksforGeeks是最好的!”输出 :

注意:在图形模式下工作时,请勿使用诸如printf之类的文本模式功能。在使用outtext时,请确保文本不会超出屏幕范围。

下面是outtext()函数:

// C Implementation for outtext()
#include 
  
// 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;
}

输出 :

想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。