-
近期文章
近期评论
- 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 年十一月
分类目录
功能
分类目录归档:编程问题提问区
如何在C语言运行s=x*y*x/10
我刚学C语言。。.还不怎么懂
void main()
{
int x_num1,x_num2,y_num1;
printf("Enter there integer numbers:");
scanf("%d %d %d",x_num1,x_num2,y_num1);
printf("\nT....
Read More >
2008
03-04
03-04
我是一个刚学C的新手,在DEv-C++平台下运行谭浩强编著的《C程序设计》一书的中程序,在编译时总是提示错误:printf undeclared(first use this function,不知是什么原因,请各位老师们指点一下,谢谢!....
Read More >
2008
03-02
03-02
2008
02-29
02-29
2008
02-28
02-28
2008
02-21
02-21
2008
02-20
02-20
main()
{
int a[]={1,2,3,4,5,6,7,8,9,10};
int *p,s=0;
p=a;
for(p=0;p<=9;p++)
s=s+*p;
printf("%d\n",s);
}
要求得到数组内各数之和.
为什么结果显示的是1333 ??
小弟自学C半个月,望高手指点...在线等....
Read More >
2008
02-19
02-19
2008
02-18
02-18
2008
02-18
02-18
可以帮忙看看我的这程序那里错了VC不通过就是排a[5]={7,5,8,6,9}的顺序#include<stdio.h>pai(int *a[],int 5){int i,j,t;for(i=0;i<5-1;i++) for(j=i+1;j<5;j++) if(a[i]<a[j]) {t=a[i];a[i]=a....
Read More >
2008
02-18
02-18
DEV C++里建立一个工程,有好几个文件,编译就是不通过,会出“dereferencing pointer to incomplete type”错误!单个就可以,代码是没问题的!
main.c代码:
#include "Stdio.h"#include "stdlib.h"#define LEN sizeof(struct student)struct student{ &nbs....
Read More >
2008
02-18
02-18
对于链表来说,怎样free 呢?SAMPLE:
#include "Stdio.h"#include "stdlib.h"#define LEN sizeof(struct student)struct student{ long num; char name[10]; float sco....
Read More >