代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/185150/9055375
cpp 6_22.cpp
//6_22.cpp
#include
using namespace std;
void main()
{
static char c[10]=
{'I',' ','a','m',' ','a',' ','b','o','y'}; //一维字符数组的声明和初始化
int i;
for(i=0;i
www.eeworm.com/read/183362/9167167
c strchr.c
//函数功能:strchr()找出该字符在字符串中的地址,并返回该地址
#include "string.h"
#include "stdio.h"
int main()
{
char *str;
char j='i';
char bst[30]={'c','a','n','`','t',' ','h','e','l','p',' ',};
str="fallin
www.eeworm.com/read/378183/9243599
dat asslandat1.dat
DOS功能调用
AH 功能 调用参数 返回参数
-- ---- -------- --------
00 程序终止(同INT 20H) CS=程序段前缀
01 键盘输入并回显 AL=输入字符
02 显示输出 DL=输出字符
03 异步通迅输入 AL=输入数据
04
www.eeworm.com/read/378183/9245348
dat funtc337.dat
函数名称: textmode
函数原型: void textmode(int newmode)
函数功能: 设置字符显示模式
函数返回:
函数说明: newmode 字符显示模式,取值和含义如下:
LASTMODE=-1 上次模式
BW40 =0 40列黑白
C40 =1 40
www.eeworm.com/read/378183/9245555
dat funtc274.dat
函数名称: strncat
函数原型: char *strncat(char *dest, const char *src, size_t maxlen)
函数功能: 将字符串src中前maxlen个字符连接到dest中
函数返回:
函数说明:
所属文件:
www.eeworm.com/read/378124/9250476
txt borland c++ builder vcl的数值转换函数.txt
1. IntToStr
将整数转换为AnsiString字符串,函数原型如下:
AnsiString __fastcall IntToStr(int Value);
2. IntToHex
将整数转换为十六进制字符串,函数原型如下:
AnsiString __fastcall IntToHex(int Value, int Digits);
3. Str
www.eeworm.com/read/180707/9297397
cpp ex11.cpp
// 第11章 字符和内存处理
// [例11.1]无结尾字符'\0'的数组输出显示的结果是不确定的
# include
void main(void) // char c[]="abc";等价于char c[4] = {'a', 'b','c', '\0'};
{ char c[]="abc";
www.eeworm.com/read/375271/9366067
java app.java
import java.util.*;
import java.util.regex.*;
public class app {
private int getString(String string[],String str) //得到对应的字符串的一个个单独的字符串
{
int num=0;
String re="[\\u4
www.eeworm.com/read/176386/9500395
c getanum.c
#include
/***********************************
函数功能:检验一个字符是不是数字
参数: 一个字符
返回值: 若是数字,返回1
若不是数字,返回0
***********************************/
int detect_number(char ch)
{