主页 / 库函数目录 / 文字输出 / outtext 功能: 在当前位置输出字符串。 声明:void outtext( const char* text, PIMAGE pimg = NULL ); void outtext( CHAR c, PIMAGE pimg = NULL ); void outtext( const wchar_t* text, PIMAGE pimg = NULL ); void outtext( wchar_t c, PIMAGE pimg = NULL );参数: text 要输出的字符串。 c 要输出的字符。 返回值: (无) 示例:// 输出字符串 char s[] = "Hello World"; outtext(s); // 输出字符 char c = 'A'; outtext(c); // 输出数值,先将数字格式化输出为字符串 char s[5]; sprintf(s, "%d", 1024); outtext(s);