Chinaunix首页 | 论坛 | 博客
  • 博客访问: 66501
  • 博文数量: 17
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 154
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-12 22:56
个人简介

不卑不亢

文章分类

全部博文(17)

文章存档

2016年(1)

2015年(13)

2014年(3)

发布时间:2015-03-21 14:31:50

点击(此处)折叠或打开/* 字符串反转 */#include <stdio.h>#include <string.h>void reverse(char *s){    int tmp;&nb.........【阅读全文】

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

发布时间:2015-03-21 14:27:49

点击(此处)折叠或打开/* 递归与非递归版本itoa函数 */#include <stdlib.h>#include <string.h>#include <stdio.h>#if 0/* itoa: convert n to characters in s; recursive version */.........【阅读全文】

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

发布时间:2015-03-21 14:27:13

点击(此处)折叠或打开#include <ctype.h>#include <stdio.h>/* atoi: convert s to integer; pointer version */int atoi(const char *s){    int n, sign;&.........【阅读全文】

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

发布时间:2015-03-21 14:26:44

点击(此处)折叠或打开#include <stdio.h>#include <ctype.h>/* atof: convert string s to double */double atof(char *s){    double val, power;   &nbs.........【阅读全文】

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

发布时间:2015-03-21 14:25:38

点击(此处)折叠或打开#include <stdio.h>#include <stdlib.h>#define STACK_DEBUG 1typedef struct _stknode_ {    int data;    struct _stknode_ .........【阅读全文】

阅读(1524) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册