Monthly Archives: 十月 2011

转换字符串为16进制int /转换json \uXXXX码为可识别的中文 [C语言]

#include <stdio.h> int i; char *str1 = “cdef”; sscanf(str1,”%x”,&i); printf(“%x\n”,i); str1是需要转换成16进制int型的字符串。最后将”cdef”转为0xcdef。有些人问这个有什么鸟用呢。其实总所周知javascript object notation表示cjk字符串的形式是:\uXXXX,XX都是0~15(0~F)的数字。使用如下代码: DWORD dwNum; WCHAR str[10]={0}; char str2[10]={0}; str[0] = 0x751f;//生 str[1] = 0x65e5;//日 str[2] = 0x5feb;//快 str[3] = 0x4e50;//乐 str[4] = 0×0001;// dwNum = WideCharToMultiByte(CP_OEMCP,0,(LPCWSTR)str,-1,NULL,0,NULL,FALSE); WideCharToMultiByte (CP_OEMCP,0,(LPCWSTR)str,-1,str2,dwNum,NULL,FALSE); printf(“%s”,str2); … Continue reading

Tagged , , | Leave a comment

ckeditor for wordpress 3.6.2.1 HTML转义bug

blogging的时候添加代码喜欢用<pre>标签,然后c代码里面有很多的#include <stdio.h>之类的头文件引用。在wysiwyg模式下输入<>后html模式下应该转义成&lt;和&gt;,但是这个bug直接转成了<>,当再切换到wysiwyg的时候,#include <stdio.h>已经变成了#include <stdio.h></stdio.h>。因为把<stdio.h>当成了一个html tag。This bug has been reported a week ago in this post. michal_cksource (the author of ckeditor) said bug has been fixed, but it will be available in next release.:(只能忍忍了,现在暂时用KindEditor.Everything is just fine.

Tagged | Leave a comment

Visual Studio 2005及其sp1下载

vs2005: ftp://Share:1118@www.sooweb.net/Share/Design/Visual%20Studio.NET%202005/ms_vs_2005_pro_chs.iso vs2005 sp1: http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=BB4A75AB-E2D4-4C96-B39D-37BAF6B5B1DC

Tagged , | Leave a comment

warning C4172: 返回局部变量或临时变量的地址

msdn的解释是 A function returns the address of a local variable or temporary object. Local variables and temporary objects are destroyed when a function returns, so the address returned is not valid. Redesign the function so that it does not return … Continue reading

Tagged | Leave a comment

reading 2011.10

C语言中二维字符数组的定义和初始化 http://en.wikipedia.org/wiki/Shale_gas 页岩气 为何近期内石油不会被新能源所取代? 你知道互联网到底多耗电吗? 独乐乐不如众乐乐 把xp安装到内存中 体验8000MB/s的速度 教程 [画廊]Windows XP的华彩10年 俄罗斯方块可以永无止境地玩下去吗? 蓝翔技校老师教潜规则 偷换或添配料节省成本 聊城18岁少年编写9000多软件:看上去像乔布斯的兵 郎咸平中文网是如何被关闭的 http://zh.wikipedia.org/wiki/飓风卡特里娜 http://en.wikipedia.org/wiki/United_States http://en.wikipedia.org/wiki/Hurricane_Katrina 新奥尔良风灾,最先提供国际援助的竟然是…… 中国已成为世界上开车最危险的地方,到底为什么车祸特别多? 交通制度仍然是重要的一环。文中的“冷光蜡烛”值得借鉴。 为什么学习C (Why Learn C?) http://zh.wikipedia.org/wiki/中国近代史 http://zh.wikipedia.org/wiki/放卫星 http://zh.wikipedia.org/wiki/中華民國國家元首列表 http://zh.wikipedia.org/wiki/三年大饥荒 http://zh.wikipedia.org/wiki/炎黄春秋 善意的谎言 如果你没有自己的业余项目,那么抱歉,你不是我们想要的

Tagged | Leave a comment