-
近期文章
近期评论
- 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 年十一月
分类目录
功能
分类目录归档:编程问题提问区
#include <stdio.h>main(){
int i=0; printf("%d,%d",++i,i++);}运行结果是2,0
但是我自己认为是1,1
为什么它是从后面开始算的呢
逗号运算符不是从左至右运算的吗
&nbs....
Read More >
请解释一下变量的自增自减问题,谢谢!
以下程序的运行结果为:j=9
main(){int i=1,j; j=++i*++i; printf("j=%d",j); }
为什么改成float型后结果就为j=6 ?
main(){float i=1,j; &n....
Read More >
2009
09-09
09-09
谭浩强版本的一道题:
输入不大于5位数的数字,编程序输出1.这个数是几位数?2.每位数是多少?3.逆序排列各位数?
下面是我写的程序,但我不知道错在哪里,请各位大侠指正,谢谢!
#include <stdio.h>void main(){ long int a,c,c1=....
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-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 >