代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/223073/14661138
txt 11-5.txt
/* 范例:11-5 */
#include
#include
#include
void cin_buf_clear(void); // 清除输入缓冲区字符
void clear_state(int); // 输出被清除字符
void view_cin_buf(void); // 检测输入缓冲区
www.eeworm.com/read/223073/14661338
txt 7-5.txt
/* 范例:7-5 */
#include
int main()
{
/* 定义四个字符类型的变量 */
char GetVarAddress1;
char GetVarAddress2;
char GetVarAddress3;
char GetVarAddress4;
/* 指派四个字符变量的内容值 */
GetV
www.eeworm.com/read/223000/14665283
txt 11-5.txt
/* 范例:11-5 */
#include
#include
#include
void cin_buf_clear(void); // 清除输入缓冲区字符
void clear_state(int); // 输出被清除字符
void view_cin_buf(void); // 检测输入缓冲区
www.eeworm.com/read/223000/14665494
txt 7-5.txt
/* 范例:7-5 */
#include
int main()
{
/* 定义四个字符类型的变量 */
char GetVarAddress1;
char GetVarAddress2;
char GetVarAddress3;
char GetVarAddress4;
/* 指派四个字符变量的内容值 */
GetV
www.eeworm.com/read/121167/14767985
cpp p60_67.cpp
//Test is T60_67.cpp
#include
#include
const int maxLen = 128; //字符串的最大长度
class String {
//对象: 零个或多个字符的一个有限序列。
public:
String ( const String & ob); //复制构造函
www.eeworm.com/read/121167/14768152
cpp p382.cpp
const int PageSize = 2; //一个页块的最大容量
const int CharNum = 2; //关键码中的字符数(包括串结束符)
struct TwoChars
{
char str[CharNum];
}; //每个关键码两个字符
struct page { //页块构造
www.eeworm.com/read/120254/14808858
cpp 4_25.cpp
# include
# include
# define max 20 //定义姓氏字符串的最大长度
void sort(char**);
void main()
{
int i;
char **p,*pstr[5],str[5][max];
cout
www.eeworm.com/read/220284/14844468
c main.c
#define MAIN_C
#include "includes.h"
/***************************/
/*串口通信*/
/*晶振为4MHz*/
/*波特率为9600bps*/
/*发送采用查询方式,中断采用接收方式*/
/*当收到的字符达到所定义的长度时,则在LCD上显示收到的字符*/
/***************************/
#
www.eeworm.com/read/219382/14883484
asm dazhijishi123.asm
;**************定义常用字符的ASC码*************
CR = 0DH ;回车键的ASCLL码
LF = 0AH ;换行键的ASCLL码
ESCKG = 1BH ;ESC键的ASCLL码
JIESHU = '$' ;定义"$"为字符串结束符
;**************下面为宏定义*******************