2013年8月10日
摘要: HTTP工作原理 HTTP协议工作于客户端-服务端架构为上。浏览器作为HTTP客户端通过URL向HTTP服务端即WEB服务器发送所有请求。 Web服务器有:Apache服务器,IIS服务器(Internet Information Services)等。 Web服务器根据接收到的请求后,向客户端发送 阅读全文
posted @ 2013-08-10 15:54 lie隼 阅读(342) 评论(0) 推荐(0) 编辑
摘要: #includeint main(){ int m=1,i=0; long int n; int a[16]; printf("Input an integer: "); scanf("%ld",&n); if(n=0;i--) printf("%d ",a[i]); printf("\n"); ... 阅读全文
posted @ 2013-08-10 11:10 lie隼 阅读(1491) 评论(0) 推荐(0) 编辑
摘要: #include #include struct node{ int data; struct node *next;};struct node * creat1(int n)//逆序建立链表{ struct node *head,*p; int i; head=(st... 阅读全文
posted @ 2013-08-10 11:07 lie隼 阅读(449) 评论(0) 推荐(0) 编辑