搜索结果

找到约 699 项符合 Int 的查询结果

按分类筛选

显示更多分类

Java编程 java 对string的各种函数

java 对string的各种函数,如跟int,byte的数据类型的转换,编码的转换等。
https://www.eeworm.com/dl/633/340935.html
下载: 122
查看: 1056

其他 学会对文件的记录锁定

学会对文件的记录锁定,及解锁。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open("name", O_RDWR|O_CREAT, 0755) if (fd == -1) return -1 printf("Input your name:") scanf("%s", myrec.name) ...
https://www.eeworm.com/dl/534/242419.html
下载: 95
查看: 1123

*行业应用 client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> i

client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_fami ...
https://www.eeworm.com/dl/631/471268.html
下载: 76
查看: 1074

技术资料 projects

TC下的串口通讯.c 主程序部分 #include "uart.h" int iBase /* com port base address */ char cHI
https://www.eeworm.com/dl/911310.html
下载: 4
查看: 5433

技术资料 量产的USB控制模块CH375

预留并口(D7~D0,RD,WR,CS)和串口(TXD,RXD),及中断INT,用户灵活应用
https://www.eeworm.com/dl/978405.html
下载: 8
查看: 3516

其他 * first open client.cpp and search for that USER_MSG_INTERCEPT(TeamInfo) over it u add this

* first open client.cpp and search for that USER_MSG_INTERCEPT(TeamInfo) over it u add this Code: USER_MSG_INTERCEPT(Health) { BEGIN_READ(pbuf,iSize) me.iHealth = READ_BYTE() return USER_MSG_CALL(Health) } * then we search for int HookUserMsg (char *szMsgName, pfnUserMsgHook pfn) a ...
https://www.eeworm.com/dl/534/249828.html
下载: 88
查看: 1079

文章/文档 #include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2

#include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2 typedef int status typedef struct LinkList{ //用带表头结点的有序链表表示多项式 float coef //系数 int expn //指数 struct LinkList *next //指向后继的指针 }*polynomail //结构体类型的指针 ...
https://www.eeworm.com/dl/652/392930.html
下载: 76
查看: 1123

单片机开发 这是一个D系列触摸屏程序

这是一个D系列触摸屏程序,这个是TOUCH 8x10D(INT)产品的程序
https://www.eeworm.com/dl/648/303459.html
下载: 51
查看: 1101

单片机编程 PCA9545A/PCA9545B/PCA9545C I2C

PCA9545A/45B/45C 是一款I2C 总线扩展器件,通过它可以将一路I2C 总线扩展为四路,在对内部控制寄存器进行相应配置后,可同时选择一路或者多路下行I2C 总线与上行I2C 总线相连。该器件具有四个中断输入INT0 - INT3 和一个中断输出INT ,分别对应四路下行I2C总线和一路上行I2C 总线,四个中断输入相“与”后控制中断输出INT ...
https://www.eeworm.com/dl/502/31010.html
下载: 30
查看: 1062

数值算法/人工智能 LCS,即最常公共子序列的的C语言解法。prepare_for_backdate(char

LCS,即最常公共子序列的的C语言解法。prepare_for_backdate(char,char,int,int)函数是为后面的回溯法求得最长公共子序列做准备,并可得到子序列长度。lcs(char,int,int)函数是输出子序列的。并用到了第一个函数的结果。因为要得到最终的子序列,要知道那些地方是可输出的位置,因此构造数组b[][],当为1时表明当前位置 ...
https://www.eeworm.com/dl/518/330364.html
下载: 51
查看: 1048