-
近期文章
近期评论
- coolker 发表在《打造最快的Hash表》
- struggle 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- diys 发表在《C语言编程宝典(王大刚) 1.1 C 语言的产生与发展》
文章归档
- 2022 年十月
- 2014 年一月
- 2013 年十二月
- 2012 年十一月
- 2012 年七月
- 2012 年六月
- 2012 年五月
- 2012 年四月
- 2012 年三月
- 2012 年二月
- 2011 年十二月
- 2011 年十月
- 2011 年九月
- 2011 年八月
- 2011 年七月
- 2011 年六月
- 2011 年五月
- 2011 年四月
- 2011 年三月
- 2011 年二月
- 2011 年一月
- 2010 年十二月
- 2010 年十一月
- 2010 年十月
- 2010 年九月
- 2010 年八月
- 2010 年七月
- 2010 年六月
- 2010 年五月
- 2010 年四月
- 2010 年三月
- 2010 年二月
- 2010 年一月
- 2009 年十二月
- 2009 年十一月
- 2009 年十月
- 2009 年九月
- 2009 年八月
- 2009 年七月
- 2009 年六月
- 2009 年五月
- 2009 年四月
- 2009 年三月
- 2009 年二月
- 2009 年一月
- 2008 年十二月
- 2008 年十一月
- 2008 年十月
- 2008 年九月
- 2008 年八月
- 2008 年七月
- 2008 年六月
- 2008 年五月
- 2008 年四月
- 2008 年三月
- 2008 年二月
- 2008 年一月
- 2007 年十二月
- 2007 年十一月
- 2007 年十月
- 2007 年九月
- 2007 年八月
- 2007 年七月
- 2007 年六月
- 2007 年三月
- 2007 年二月
- 2007 年一月
- 2006 年十二月
- 2006 年十一月
- 2006 年十月
- 2006 年九月
- 2006 年八月
- 2006 年七月
- 2006 年六月
- 2006 年五月
- 2006 年四月
- 2006 年三月
- 2006 年二月
- 2006 年一月
- 2005 年十二月
- 2005 年十一月
分类目录
功能
2009
08-26
08-26
作者:Brian Friesen编译:VCKBASE
原文出处:PasswordSpy - Retrieving lost passwords using Windows hooks下载源代码
关键字:钩子 进程间通讯 单实例 操作系统版本
简介
几年前我在CodeGuru 上下载了一个....
Read More >
2009
08-26
08-26
作者:Zhefu Zhang编译:VCKBASE
原文出处:SuperPassword SPY++下载源代码
环境:VC6/VC7, MS Platform Core SDK, IE4.0+, WinNT/2K/XP (在英文/中文/日文版的Win2k/XP 及IE6.0+SP1上测试通过....
Read More >
2009
08-22
08-22
unsigned 是无符号短整型,取值范围是:65535。为什么定义unsigned a[65000][5]会造成在VC6.0上编译运行不下去。
VC6.0上提示出错信息是:
Linking...LINK : fatal error LNK1168: cannot open Debug/FILE查找中奖_01.exe for writing执行 link.exe 时出错.
#include&....
Read More >
2009
08-19
08-19
#include<stdio.h>void main(){ int mintomax(int array[5]); int a[5]; int i; for(i=1;i<=5;i++) { &....
Read More >
2009
08-13
08-13
//辅助类class CClientSocketHelper : public CTempldateHelper<IClientSocket>{ //函数定义public: //构造函数 CClientSocketHelper(void) : CTempldateHelper....
Read More >
2009
08-08
08-08
#include "stdio.h"int dyn(p3,rows,cols)/*动态输入字符串数组*/ int rows,cols; char ***p3;{ char **x; int i; x=(....
Read More >
2009
08-07
08-07
用的是TURBOC2
#include "stdio.h"main()
{ int a[]={1,3,5,7,9,8,6,4,2,0}; int i; sort(a,10); ....
Read More >
2009
08-06
08-06
该程序是找出a数组在与b数组对比中,输出有相同四码的数组。但输出的不对问题出在哪?敬请指点!!!
#include<stdio.h>int b[10000][5];int zbbhj_x;void xdu373zhZ(int a[][5],int zbbhj_x); int ybbhj_ch;void xdu374zhZ(int b[][5],int ybbhj_ch); ....
Read More >
2009
08-05
08-05
C++资深开发人员 1名职责:扫描影像处理软件的设计、开发要求: (1) 3年以上C、C++项目开发经验,2年以上MFC和ActiveX项目开发经验 (2) 精通C、C++, 熟悉DLL、ActiveX、多线程开发&....
Read More >
2009
08-04
08-04
#include "stdio.h"
main()
{int i,t;
char s[]="It is a gorgeous day!";
puts(s);
for(i=0;i<=(int)(strlen(s)/2);i++)
{ t....
Read More >
2009
08-03
08-03
float fun(int x, int y)
{return(x+y);}
main()
{int a=2,b=5,c=8;
printf("%3.0f\n", fun((int)fun(a+c,b),a-c));}
运行结果:空格空格9/*为什么有两个空格*/float fun是什么意思?定义返回值为单精度的函数%3.0f\n"是什么意思? 输出结果最小宽度为3、小数....
Read More >
2009
07-28
07-28
题目:
编写一个程序,打印输入中单词的直方图。
[CODE]
[amro@localhost C]$ vim pt1.13.c
1 #include <stdio.h>
2
3 #define MAXHIST 15 /*max length of histogram*/
4 #define MAXWORD 11 /*max length of....
Read More >
2009
07-27
07-27
本人是个刚学c语言的。从《c程序设计语言》一书的第12页看到有个统计输入字符数的程序。有两个版本。
第一种:
#include "stdio.h"void main() { long nc; nc=0; while(getchar()!=EOF) ++nc;....
Read More >
2009
07-26
07-26
a数组与b数组进行对比。如有相同四码的就把b数组的数赋给a数组并输出a数组。但a数组继续对比下去。
问题是: 1 3 6 11 18 应输出是:1 3 6 9 18 和 1 3 6 11 12 却只输出了:1 3 6 9 18(意思是:当a数组在对比b数组过程中,a数组不要发现有相同四码的就退出,要继续向下对比b数组的其他数组并再一次次的替换至到对....
Read More >