-
近期文章
近期评论
- 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 年十一月
分类目录
功能
月归档:2007 年十一月
我是C初学者,请大家给看看下面的程序错在哪目的:通过程序调用实现修改字符串#include <stdio.h>int swap_str(char *s){s="hi";return 1;}int main(){char *msg="hello";printf("%s\n",msg);swap_str(msg);printf("%s\n",msg);return 1;}
....
Read More >
2007
11-11
11-11
求哥们们帮 我 编辑一个简单的C语言程序!要求很简单就是把 you have the correct record 这句话要求输出成 rd yu have the crrect rec 这个好像就是要求把原话中的O....
Read More >
2007
11-11
11-11
2007
11-11
11-11
我的程序在vc下不能循环执行,不知道什么问题.编译什么的都没问题,麻烦大家看看
#include <stdio.h>#include <stdlib.h>#define MAXSIZE 255int Stack[MAXSIZE];
int Top=-1;//在这里用作栈顶指示符void Push(int Stack[MAXSIZE],int a){ if(To....
Read More >
2007
11-06
11-06
问题:把560分钟换算成小时和分钟表示.
以下是我写的,但和实际数值有误差,请问错在哪里.
main(){ int a,b,x=560; /*560分钟用小时和分钟表示*/ a=x/60; b=x%60; pr....
Read More >
2007
11-06
11-06
图解安装OpenBSD v4.2操作系统,包括一种升级方法!
zip包,制作成了html网页形式!
有错误和疑问可以在这里跟帖。^_^
下载地点1:http://www.isload.com.cn/store/2qpw04ks07xfv/OpenBSDv4.2Install.zip/downlaod
下载地点2:ftp://vcgood:www.vcgood.com@ftp.vcgood.....
Read More >
2007
11-06
11-06
1 输入一个字符,如是大写输出相应的小写字母,如是小写则输出相应的大写字母,否则原样输出。 #include<stdio.h>int main(){char d;printf("please input a word:");scanf("%c",&d);printf("%d\n",d);if(d>=65&&d<=90){d = d + 32;prin....
Read More >
2007
11-06
11-06
电话簿 VIEW
/******头文件(.h)***********/#include "stdio.h" /*I/O函数*/#include "stdlib.h" /*标准库函数*/#include "string.h"/*字符串函数*/#include "ctype.h" /*字符操作函数*/#define M 50 /*定义常数表示记录数*/typedef struct /....
Read More >