-
近期文章
近期评论
- 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 年十一月
分类目录
功能
分类目录归档:编程问题提问区
2009
03-30
03-30
书上说文件的定义为:
typedef struct
{short level; unsigned flags;.........short token;
}FILE;
请问我可以访问文件里面定义的成员吗?我试者访问了一下为什么不行啊?
比如:FILE *fp=fopen("file.1","w");
cout<<f....
Read More >
2009
03-30
03-30
各位论坛的牛人,小弟新人外加菜鸟.刚开始学C语言.问个很BC的问题...
#include<stdio.h>
void main()
{
int y=2456;
printf("y=%#8o\n",y);
}
....
Read More >
2009
03-27
03-27
2009
03-26
03-26
/* Note:Your choice is C IDE */#include "stdio.h"#include "stdlib.h"#define Max 15struct Student{ int Number; int Name[Max]; char Sex; int Age; struct Student *Next;};typedef ....
Read More >
2009
03-26
03-26
今天心情不错!编写了一个32位机的关于10进制转换为2进制输出程序,希望大家多多指点;
#include<iostream.h>int tow(int n){ unsigned i,j=1; for(i=1;i<=n;i++)j=j*2; return(j);}void main(){ unsigned i,a[32]={0}; ....
Read More >
2009
03-25
03-25
#include<stdio.h>#include<math.h>
float roundtointeger(float x);
/*function main begins*/int main(void){ float x; float y;
printf("Please enter the x(-1 to end):"); ....
Read More >
2009
03-24
03-24
帮帮我(我现在看的是KR的那个“the c programming lauguage”)
我下了一个TC2.0
#include <stdio.h>
main()
{
printf("hello,world\n");
}
或者是
main()
{
printf("hello,world");
}
结果都出错……ALT+F5,什么显示也没有,就一个光标在闪……
....
Read More >
2009
03-23
03-23
#include<iostream.h>#include<malloc.h>#define NULL 0#define LEN sizeof(struct ST)#define S struct STstruct ST{ long num; float score; S *next;};
int n=0;
S *creat(void){&n....
Read More >
2009
03-23
03-23
#include "stdlib.h"#include "stdio.h"#define Max 10struct List{ int Number; char Name[Max]; struct List *Next;};typedef struct List Node;typedef Node* Link;
Link Creat_List(Lin....
Read More >
2009
03-22
03-22
下面这个程序中最后一个printf("\n")为啥没有用啊?有没有它,程序的运行结果都是一样
#include<stdio.h>
int main(void){ int i; int j; int k;
for(i=1;i<=5;i++) for(j=1;j<=3;j++){ &nb....
Read More >
2009
03-22
03-22