-
Wrox+-+Ivor+Hortons+Beginning+Visual+C+++2008+(Mar
Wrox - Ivor Hortons Beginning Visual C++ 2008 (Mar 2008)
- 2008-11-19 16:24:39下载
- 积分:1
-
JDBC900c2
经典C程序 900个 合集 方便学习 易学易用(Collection of 900 classic C program)
- 2010-05-10 23:05:07下载
- 积分:1
-
Computer3certificationexammaterials
说明: 计算机3级考试认证材料,希望对大家有所帮助!!!(Computer 3 certification exam materials, want to help you! ! !)
- 2010-03-17 09:20:44下载
- 积分:1
-
并口I2C
根据I2C协议编写并口I2C通信代码(支持单个数据或多个数据读写操作),速率可调整。
- 2022-01-31 11:14:49下载
- 积分:1
-
studentsystem
通过指定的的密码进入成绩管理系统.
该系统实现学员成绩管理,每个学员包括3门课的成绩,从键盘输入学员信息。
3、 包括学号、姓名、英语,C语言,数学三门课成绩,计算出学员的平均成绩,按照学员平均成绩由大到小排序。
4、 插入功能:在排序后的学员成绩表中插入一个学员的信息,要求插入后仍然保持成绩表有序。
删除功能:要求输入指定的学号,从学员信息表中删除该学员,删除后的成绩表保持有序
(1, by specifying a password to enter the results of the management system. 2, the performance management system training, each student, including three classes of results, students from the keyboard input information. 3, including the school number, name, English, C language, mathematics lesson three results to calculate the average student, average student performance in accordance with descending order. 4, insert the functions: students in sorting results after inserting a table of information students require to insert after the results remained orderly. Delete functions: the school designated for the importation of number, information from the students table to delete the participants, the results after the deletion of maintaining orderly)
- 2009-06-02 13:15:46下载
- 积分:1
-
greed
颜色的变化,用来实现颜色的变化。开发环境为visual c++ ,常用工具之一。(Color change, to realize the color changes. Development environment for visual c++, One of the tools commonly used.)
- 2008-04-07 20:51:40下载
- 积分:1
-
VC 创建内存映像文件对象并使用
VC++6.0 创建内存映像文件对象并使用,实现了写入内存映射文件和从内存映射文件中读取数据,比如将数据从内存映射文件读出,实现方法如下:
void CFileMapTransTxtDlg::OnRead()
{
//创建内存映像对象
HANDLE hMapping;
LPSTR lpData;
hMapping=CreateFileMapping((HANDLE)0xFFFFFFFF,NULL,PAGE_READWRITE,0,0x100,"MYSHARE");
if(hMapping==NULL)
{
AfxMessageBox("CreateFileMapping() failed.");
return;
}
//将文件的视图映射到一个进程的地址空间上,返回LPVOID类型的内存指针
lpData=(LPSTR)MapViewOfFile(hMapping,FILE_MAP_ALL_ACCESS,0,0,0);
if(lpData==NULL)
{
AfxMessageBox("MapViewOfFile() failed.");
return;
}
//给这段映像内存的数据赋给本地变量
m_strDest.Format("%s",lpData);
//释放映像内存
UnmapViewOfFile(lpData);
//更新数据
UpdateData(FALSE);
}
- 2022-05-17 02:25:47下载
- 积分:1
-
lcd_clock
我在工作学习中使用的c语言代码,希望大家看看,哈哈!(I am working and learning to use the c language code I hope you take a look, ha ha!)
- 2010-01-18 14:11:40下载
- 积分:1
-
CSO_C
CSO算法用C语言编写代码,带测试函数。通过更改函数代码,可运行不同的函数(CSO algorithm with C language code, with test function. By changing the function code, can run different functions)
- 2021-02-22 14:39:41下载
- 积分:1
-
Signal-Processing-for-C
数字信号处理C语言程序集 是一本经典的书籍 在算法和编程思想上都值得借鉴(Digital signal processing C language program set is a classic book on algorithms and programming ideologically worth learning)
- 2015-12-28 21:27:41下载
- 积分:1