Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1494143
  • 博文数量: 329
  • 博客积分: 2773
  • 博客等级: 少校
  • 技术积分: 4219
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-24 14:17
个人简介

淡定从容,宁静致远

文章分类

全部博文(329)

文章存档

2016年(4)

2015年(50)

2014年(68)

2013年(45)

2012年(162)

发布时间:2014-09-09 21:26:14

int func(int m, int n){    int t,i = n, j = m;    while ((m%n)!=0)    {        t = n;       &.........【阅读全文】

阅读(1134) | 评论(0) | 转发(0)

发布时间:2014-09-09 09:53:04

#include <stdio.h>#include <stdlib.h>typedef struct node{int data;struct node *next;}StackNode;//置空栈StackNode* Init_LinkStack(StackNode *top){top=NULL;return top;}//判空栈int Empty_LinkStack(StackNode*top){if(top==NULL){return 1;}else{return 0;}}//入栈StackNode* Pu.........【阅读全文】

阅读(754) | 评论(0) | 转发(0)

发布时间:2014-09-09 09:50:30

#include <stdio.h>#include <stdlib.h>typedef int DLL_DataType;typedef struct Node{DLL_DataType data;struct Node *pre,*next;}DLL_Node;typedef struct{DLL_Node *head,*tail;}DList;DLL_Node* DLL_makeNode(DLL_DataType value){DLL_Node*new_ptr=malloc(sizeof(DLL_Node));new_ptr->data=value.........【阅读全文】

阅读(807) | 评论(0) | 转发(0)

发布时间:2014-09-09 09:38:21

#include <time.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <netinet/ip.h>#include <stdio.h>#define BUFSIZE 128int main(void){      int sd;      struct sockaddr_in my_end, his_end;      socklen_t his_len; .........【阅读全文】

阅读(1019) | 评论(0) | 转发(0)

发布时间:2014-09-08 11:24:05

long,指针在64位和32位下分别占多少字节   32位 64位 long 4 8 指针 4 8......【阅读全文】

阅读(1031) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

onlyword2017-06-23 11:39

回复  |  举报

勤劳致富linux2012-06-15 09:41

回复  |  举报

勤劳致富linux2012-06-01 11:43

老大,好饿呀,吃饭吧!

回复  |  举报

勤劳致富linux2012-05-31 17:50

老大,我来过!

回复  |  举报

llweiyang2012-03-30 11:04

回复  |  举报
留言热议
请登录后留言。

登录 注册