搜索结果

找到约 101 项符合 null-terminated 的查询结果

软件设计/软件工程 printf(&quot 请输入%d个课程的代表值(<%d个字符): &quot ,(*G).vexnum,MAX_NAME) for(i=0 i<(*G).vexnum ++i)

printf(&quot 请输入%d个课程的代表值(<%d个字符):\n&quot ,(*G).vexnum,MAX_NAME) for(i=0 i<(*G).vexnum ++i) /* 构造顶点向量 */ { scanf(&quot %s&quot ,(*G).vertices[i].data) (*G).vertices[i].firstarc=NULL } printf(&quot 请输入%d个课程的学分值(<%d个字符):\n&quot ,(*G).vexnum,MAX_NAME) fo ...
https://www.eeworm.com/dl/684/333152.html
下载: 60
查看: 1222

数据结构 base64算法,前几天用来截获MSN协议时获取文件名时使用的。之前用的一个网上下下来的base64的源码

base64算法,前几天用来截获MSN协议时获取文件名时使用的。之前用的一个网上下下来的base64的源码,解码总是错误。后来干脆自己写了一个。由于MSN协议解出来的字符串是UNICODE的,所以那些base64转换器解码后显示不出有用信息,中间被截断(null字符)。 里面包含两个项目(一个库,一个测试程序) ...
https://www.eeworm.com/dl/654/338554.html
下载: 157
查看: 1029

Windows CE wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification

wince EVC 简单的图片浏览功能,自已随意扩展 支持 *.bmp *.jpg *.gif *.png 等等 // TODO: Add your control notification handler code here CString defFilter("选中其中一个文件|*.bmp *.jpg *.gif *.png") CFileDialog dlg(TRUE,NULL,NULL,OFN_ALLOWMULTISELECT,defFilter) if(dlg.DoModal()==IDOK){ PathName=dl ...
https://www.eeworm.com/dl/674/345350.html
下载: 171
查看: 1113

其他 The MAX481E, MAX483E, MAX485E, MAX487E–MAX491E, and MAX1487E are low-power transceivers for RS-485

The MAX481E, MAX483E, MAX485E, MAX487E–MAX491E, and MAX1487E are low-power transceivers for RS-485 and RS-422 communications in harsh environments. Each driver output and receiver input is protected against ±15kV electrostatic discharge (ESD) shocks, without latchup. These parts contain one driver ...
https://www.eeworm.com/dl/534/358029.html
下载: 41
查看: 1048

Java编程 实现基本的购物车功能。 eclipse+sqlserver2005 1.主要强调了购物车的业务逻辑。 2

实现基本的购物车功能。 eclipse+sqlserver2005 1.主要强调了购物车的业务逻辑。 2,利用javabean封装。比较适合jsp初学者。 3.简洁实用。可以在此基础上开发更加复杂功能的购物网站。 数据库建立 create database shop_db go use shop_db go create table t_sp ( s_id int identity(1,1) primary key, s_name varchar(2 ...
https://www.eeworm.com/dl/633/367055.html
下载: 108
查看: 1199

matlab例程 This demo shows the BER performance of linear, decision feedback (DFE), and maximum likelihood seque

This demo shows the BER performance of linear, decision feedback (DFE), and maximum likelihood sequence estimation (MLSE) equalizers when operating in a static channel with a deep null. The MLSE equalizer is invoked first with perfect channel knowledge, then with an imperfect, although straightforwa ...
https://www.eeworm.com/dl/665/370242.html
下载: 42
查看: 1065

其他 /* 实现一个图类

/* 实现一个图类,通过增加结点关系而增加结点,通过创建新关系而覆盖旧关系 能在DOS窗口打印图结点列表和结点边列表 初始化的时候 结点表首指针置为NULL,在释放图对象的时候,析构函数实现释放结点和边结点 */
https://www.eeworm.com/dl/534/370291.html
下载: 198
查看: 1011

Java书籍 pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernu

pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernumber= "+ cdName + " ") rs=pstmt.executeQuery() if(rs!=null && rs.next()){ String datetime = rs.getString(2) java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat ("yyyy-MM-dd") ...
https://www.eeworm.com/dl/656/370555.html
下载: 31
查看: 1130

Linux/Unix编程 线程描述。主程序创建两个线程myThread1 和 myThread2

线程描述。主程序创建两个线程myThread1 和 myThread2 ,每个线程打印一句话。使用pthread_create(&id,NULL,(void *) thread,NULL)完成。 先定义每个线程的执行体,然后在main中创建几个线程,最后主线程序等待子线程序结束后再退出。 2、创建两个线程,分别向线程传递如下两种类型的参数 ...
https://www.eeworm.com/dl/619/378975.html
下载: 45
查看: 1559

Linux/Unix编程 /* 在这里我们连接 "destroy" 事件到一个信号处理函数。 * 对这个窗口调用 gtk_widget_destroy() 函数或在 "delete_event" 回调函数中返回 FALS

/* 在这里我们连接 "destroy" 事件到一个信号处理函数。 * 对这个窗口调用 gtk_widget_destroy() 函数或在 "delete_event" 回调函数中返回 FALSE 值 * 都会触发这个事件。*/ g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy), NULL) /* 设置窗口边框的宽度。*/ gtk_container_set_border ...
https://www.eeworm.com/dl/619/383790.html
下载: 83
查看: 1995