代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/131795/14126744
dat funtc274.dat
函数名称: strncat
函数原型: char *strncat(char *dest, const char *src, size_t maxlen)
函数功能: 将字符串src中前maxlen个字符连接到dest中
函数返回:
函数说明:
所属文件:
www.eeworm.com/read/131409/14147399
cpp analyseword.cpp
/*
Author : Deimos
Date : 2005/4/13
Modify : 2005/4/14
Title : C语言简易词法分析器
Version: Demo
*/
/*
保留字:if、int、for、while、do、return、break、continue -- 编号:1
标识符:除保留字以外的字符串或字符(数字不行) --
www.eeworm.com/read/126892/14396159
txt 新建 文本文档 (2).txt
#include
#include
#include
#define MAX 50
void main()
{
FILE *in,*out;/*存放输入字符串和输出单词串的文件*/
char arr[MAX];/*arr数组存放单词符号*/
char currentchar;/*currentchar存放当前输入字符
www.eeworm.com/read/225696/14525780
c c03_01.c
/*用格式字符控制字符串的输出*/
#include
int main()
{
char *c = "BOOK";
printf("%s,%7s,%-7s,%7.3s,%-7.3s,%3.2s", c, c, c, c, c, c);
return 0;
}
www.eeworm.com/read/224340/14596995
txt tongxunlu.txt
/*10.3.2源程序*/
/******头文件(.h)***********/
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*标准库函数*/
#include "string.h"/*字符串函数*/
#include "ctype.h" /*字符操作函数*/
#define M 50 /*定义常数表示记录数*/
type
www.eeworm.com/read/118454/14869481
prg error_4.prg
******程序功能:将非汉字字符组成的字符串反序显示(例如将Microsoft显示为tfosorciM)
CLEAR
cString="Microsoft "
cResult=cString+"的反序显示为"
DO WHILE LEN(cString)>0
cResult=RIGHT(cString,1)+cResult
cString=SUBSTR(cString,1,LEN(
www.eeworm.com/read/117657/14910245
txt 词法分析器代码.txt
#include
#include
#include
#define MAX 50
void main()
{
FILE *in,*out;/*存放输入字符串和输出单词串的文件*/
char arr[MAX];/*arr数组存放单词符号*/
char currentchar;/*currentchar存放当前输入字符
www.eeworm.com/read/215702/15052613
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/8113/141788
c˴
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*标准库函数*/
#include "string.h" /*字符串函数*/
#include "ctype.h" /*字符操作函数*/
#define MAX 50 /*定义常数表示记录数*/
struct ADDRESS /*定义数据结构*/
www.eeworm.com/read/10105/181220
c 101.c
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*标准库函数*/
#include "string.h" /*字符串函数*/
#include "ctype.h" /*字符操作函数*/
#define MAX 50 /*定义常数表示记录数*/
struct ADDRESS /*定义数据结构*/