摘要: /****** Object: StoredProcedure [dbo].[p_DataPagination] Script Date: 07/18/2017 15:14:11 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO-- Batch 阅读全文
posted @ 2017-07-18 15:16 lizhigang 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/JefferyZhou/archive/2010/07/01/1769555.html 在很多时候我们都很清楚 atoX 系列函数: atoi , atol , atof新来的一系列函数: strtol, strtoul, strtod 通常有如下 阅读全文
posted @ 2017-07-18 11:52 lizhigang 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/lpshou/archive/2012/06/05/2536799.html 1、memcpy、memmove、memset源码 link:http://note.youdao.com/share/?id=1f826e4337c7db272e94f 阅读全文
posted @ 2017-07-18 11:51 lizhigang 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/zsboy/p/3886677.html 问题:将字符窜转换成数字分析:感觉题目不难,但是细节很多,容易想不到1.数字前面有空格 如s=“ 123456”2.数字前出现了不必要或多于的字符导致数字认证错误,输出0 如s=“ b1234” ,s=“ 阅读全文
posted @ 2017-07-18 11:49 lizhigang 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/lidabo/archive/2012/07/10/2584706.html _itoa 功能:把一整数转换为字符串 用法:char * _itoa(int value, char *string, int radix); 详细解释: _itoa是 阅读全文
posted @ 2017-07-18 11:40 lizhigang 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/bluestorm/p/3168719.html C语言提供了几个标准库函数,可以将任意类型(整型、长整型、浮点型等)的数字转换为字符串。 1.int/float to string/array: C语言提供了几个标准库函数,可以将任意类型(整型、 阅读全文
posted @ 2017-07-18 11:09 lizhigang 阅读(200) 评论(0) 推荐(0) 编辑