-
近期文章
近期评论
- 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 年十一月
分类目录
功能
分类目录归档:编程问题提问区
2011
04-23
04-23
1.下列程序的输出结果是( )#include <stdio.h> void main() { int a = 2, b = 3, c = 0, d; d = !a && !b ||!c; printf(“%d\n”, d); }a.1b.0c.编译出错d.-1
2.若w=1, x = 2, y=3, z = 4 ,则条件表达式w <....
Read More >
2011
04-23
04-23
2011
04-07
04-07
原程序是下边的,弄到VC6。0里面运行说有条错误,下边的代码是网络上的程序代码,是我们这个论坛转的。我实在弄不清楚错在哪。希望各位高手告诉我下。我是个没有老师自学的菜鸟,拜托大家了
#include <iostream> #include <string> #include <cmath> ....
Read More >
2011
03-17
03-17
首先来看程序
#include <stdio.h>
int*f (int*p,int*q);
main(){int m=1,n=2,*r=&m;r=f(r,&n);printf("%d\n",*r);return 0;}int*f (int *p,int*q){return (*p>*q)?p:q;}
很简单 但是我有一个始终想不通的地方 为什么&....
Read More >
2011
02-28
02-28
1 本人大二,学过C和数据结构,但都不怎么样,现在想提高编程能力,有人说最好看原版书,本人英语刚刚六级水平,能看懂吗?2 C++要学吗?本人C++基本没学,但是好多书都是用C++为载体的,如果不学C++又感觉那些书上的东西可惜了,所以很纠结是否应该学一下C++。。3 还有就是应该看哪些书?这些书我在网上找的书单,我应该看哪些?以什么样的顺序看?(重要!!!)人月神话编程珠玑代码大全the c pr....
Read More >
2011
01-09
01-09
#include<iostream>using namespace std;void main(){ int i,j,n=0; int a[20]={0}; for(i=100;i<1000;i++) { ....
Read More >
2011
01-03
01-03
#include<stdio.h>#include<math.h>void main(){double d=0,p,h;int a,b,c;printf("请输入精度");scanf_s("%d",&c);for(a=0,b=1,h=1;h>=pow(10,-c);a++){h=1/b;if(a%2==0) d=d+h,b=b+2;else d=d-h,b=b....
Read More >
2010
11-30
11-30
写一个投稿系统,出现错误。如下d:\program files\microsoft visual studio\myprojects\投稿系统测试版\function.c(14) : error C2675: unary '!' : 'struct LNode_MANU' does not define this operator or a conversion to a type accepta....
Read More >
2010
11-22
11-22
#include<stdio.h>//#include<string.h>#include<malloc.h>#define STACK_INIT_SIZE 100;#define STACKINCREMENT 10;typedef struct{char *base;char *top;int stacksize;}SqStack;typedef struct....
Read More >