-
近期文章
近期评论
- 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 年三月
2009
03-31
03-31
#include<stdio.h>int imin(int,int);int main(){ int evil1,evil2;
printf("enter a pair of integer(q to quit):\n"); while(scanf("%d %d",&evil1,&evil2)==2) { &....
Read More >
#include <stdio.h>
void main()
{
int i;
unsigned int j;
i=~0;
j=~0;
printf("i=%d,j=%d",i,j);
}
为什么i=-1,j=-1?
(-1怎么来的?)....
Read More >
2009
03-31
03-31
程序如下(我特意编了一个最基础的程序……)
#include <stdio.h>
main()
{
printf ("hello,nihao");
}
然后F9,显示的是"成功",但是ctr+f5,什么也看不到,就一个光标……
-------------------------------------------------------------------------....
Read More >
2009
03-30
03-30
请问我的程序用.txt复制到.txt很成功!为什么用.doc复制到.txt就不行呢?
而且我用.doc复制到.doc也不行?请问.doc是采用的什么储存制度啊?
怎么才能用C来复制.DOC文件到.TXT,或者.DOC到.DOC啊??....
Read More >
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
亲们,大家好,我是猎头顾问Candy,wang,下面是比较紧急的案例,工作地点:上海。所有收到的信息我都会一一回复!希望有兴趣的及时和我联系!邮件或MSN 都可。Email&MSN: candyhr@sina.com 雅虎通:candy.lovelemon@yahoo.com.cn
服务器开发工程师 (一定要是Linux) 工作职责:1、负责ACG....
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 >