摘要: 来自http://yuweiqiang.blog.163.com/blog/static/6657041201009102431903/C语言提供了几个标准库可以将任意类型(整型、长整型、浮点型等)数字转换为串以下是用itoa将整数转换为串个例子:# <stdio.h># <stdlib.h>void (void){num = 100;char str[25];itoa(num, str, 10);prf("The number 'num' is %d and the 'str' is %s. \n" ,num, st 阅读全文
posted @ 2011-03-07 10:24 notdel 阅读(753) 评论(0) 推荐(0) 编辑
摘要: VS2005中,数学函数的参数检查更为严格,如pow(2, 45)会引起一个错误提示如下:error C2668: “pow”: 对重载函数的调用不明确d:\program files\microsoft visual studio 8\vc\include\math.h(575): 可能是“long double pow(long double,int)”d:\program files\microsoft visual studio 8\vc\include\math.h(527): 或“float pow(float,int)”d:\program files\microsoft vis 阅读全文
posted @ 2011-03-07 10:11 notdel 阅读(3196) 评论(0) 推荐(1) 编辑
摘要: 来自http://blog.csdn.net/endcorps/archive/2010/05/30/5634968.aspxWarning C4819:The file contains a character that can ot be represented in the current code page(936). save the file in unicode format to prevent data loss.中文意思是:该文件包含不能在当前代码页中表示的字符,请将文件保存为Unicode格式,以防止数据丢失。一般来说,这个警告没有什么影响。要想去掉这个警告的方法有:(1 阅读全文
posted @ 2011-03-07 10:05 notdel 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: 来自http://blog.sina.com.cn/s/blog_4ded4a890100j2nz.html 将过去的工程用VS2005打开的时候。你有可能会遇到一大堆的警告:warning C4996。比如:warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. 原因是Visual C++ 2005使用了更加安全的run-tim 阅读全文
posted @ 2011-03-07 09:46 notdel 阅读(794) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/jzg7366/archive/2008/07/03/2608732.aspxIIS安装设置 •IIS是Internet Information Server的缩写,是微软提供的Internet服务器软件,包括WEB、FTP、Mail等等服务器。因为IIS的FTP和Mail服务器不是很好用,一般用IIS只用其WEB服务器。本文以Win2000服务器版操作系统为例,介绍WEB服务器的安装和设置方法。 •目前运行IIS的最理想平台是Windows 2000服务器版和高级服务器版。Win9x/Me里也有IIS,但只是PWS(个人WEB服务器),功能很有限,只 阅读全文
posted @ 2011-02-27 00:42 notdel 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 来源:http://servers.pconline.com.cn/skills/0806/1313867_3.html首先以超级用户权限进入Windows Server 2008服务器系统,依次选择该系统桌面中的“开始”/“运行”命令,打开服务器系统的运行文本框,在其中输入字符串命令“perfmon.exe”,单击“确定”按钮后,进入可靠性和性能监视器界面; 其次依次点选该界面左侧列表窗格中的“监视工具”/“可靠性监视器”分支选项,打开如图4所示的可靠性监视器程序界面。在这里,服务器系统的每一天运行状态都能看出来,如果哪一天服务器系统出现了故障,我们就能在图4界面中看到对应日期一列中有红色的 阅读全文
posted @ 2011-02-26 12:08 notdel 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 很简单,学习任何东西,了解一下概述,历史,笑话等等的周边,以及正体面貌,对于以后的学习,很有帮助!1,学习PHP经常的问题2,PHP的发展历史3,PHP的环境搭配 阅读全文
posted @ 2010-12-23 09:30 notdel 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1,下载PHP  php下载版本比较多,其中,  vc9=vs2008编译,推荐使用IIS+php搭配模式,  vc6=vs6编译,推荐使用apache+php方式搭配,  Thread Safe,线程安全,执行时会进行线程(Thread)安全检查,以防止有新要求就启动新线程的CGI执行方式而耗尽系统资源。Non Thread Safe是非线程安全,在执行时不进行线程(Thread)安全检查。  Non Thread Safe,  再来看PHP的两种执行方式:ISAPI和FastCGI。  ISAPI执行方式是以DLL动态库的形式使用,可以在被用户请求后执行,在处理完一个用户请求后不会马上消失 阅读全文
posted @ 2010-12-18 01:39 notdel 阅读(3042) 评论(1) 推荐(0) 编辑