-
近期文章
近期评论
- 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 年十一月
分类目录
功能
2008
05-30
05-30
#include <stdio.h>void main(){int s,t;printf("input a number!\n");scanf("%d",&s);t=(int)(s/10);if (t=10) printf("5\n");if (t=9) printf("4\n");if (t=8) printf("3\n");if (t=7)&n....
Read More >
2008
05-30
05-30
最近看书 发现有一个问题一直没弄明白,现在发出来请大家帮忙参考参考
以求两数的最小公倍数为例.
程序代码如下:
int divisor(int a,int b) &nb....
Read More >
2008
05-30
05-30

#include<stdio.h>#include<math.h>#include<malloc.h>#define Gragh 1int Place (int row,int *pos,int line) //*pos是什么意思
 ....
Read More >
BIT_FILE * OpenOutputBitFile( char *name );
补充:函数名前有个星号(*),是什么意思?
完整源代码:
/**************开始 BITIO.H************************/#ifndef _BITIO_H#define _BITIO_H#include <stdio.h>typedef struct bit....
Read More >
#include "stdio.h"#include "math.h"void main(){int a,b,c;printf("shuru3geshu!");scanf("%d%d%d",&a,&b,&c);if (a+b<=c || a+c<=b || b+c<=a || fabs(a-b)>=c || fabs(a-c)>=b || fa....
Read More >
2008
05-28
05-28
main()
{
float a,b;
a=6;
b=5;
a%=b;
printf("%f",a);
}
它说我非法使用浮点运算 我实在看不出来哪里非法 知道的有空说下  ....
Read More >
2008
05-28
05-28
void main(){union bt {int k; char c[2]; }a;a.k=-7;printf("%o,%o\n",a.c[0],a.c[1]);}
调试后输出:
177771,177777
各位高手, 帮忙给解释一下为什么得出这样的结果,小弟在这多谢了!!....
Read More >
2008
05-28
05-28
我很喜欢电脑,以前都是玩网络游戏什么的.可现在想学点东西了.
现在想学C语言.但是不知道用什么样的编译器.
看了好多的帖子,知道TC2.0还有个创天中文版c/c++6.0,
可 创天中文版 :文件-新建里的没有东西.下载了很多都是这样,英文版本的我又看不懂.
请给我一个下载连接.或者介绍一个好用一点的编译器.
还有 vc++和vc.还有C/C++ 正确的解释.那些是编译器.我....
Read More >
用vc++检查的,发现不少错误
哪位高手能帮忙全改下么?
新学的c,很多不明白!
#include <malloc.h>#include <stdlib.h>#include <stdio.h>#include <conio.h>#define LEN sizeof(struct student)....
Read More >