加载中
c++11对unicode支持.

不错的英文 http://www.cprogramming.com/tutorial/unicode.html 不错的中文 http://blog.poxiao.me/p/unicode-character-encoding-conversion-in-cpp11/...

2015/05/25 21:01
270
再说UNIX下的C语言学习---给一个明确的学习路线

再说UNIX下的C语言学习---给一个明确的学习路线 很多人以为C语言过时了,或是觉得C语言没什么用,特别是计算机专业的学生。好高婺远,喊着C过时了,要学习更高级的语言。 对于这个问题,我在...

2014/12/27 17:21
287
C笔记(二)

Head first C 接 笔记一 P226 初始化struct类似于初始化一个数组. 将某个struct赋值给另一个struct的时候, 是拷贝了一份全新的数据. struct fish { const char *name; const char *speci...

2014/05/13 23:19
41
Autoconf and Automake Tutorial

I wrote a charming little utility for linux called getkey, that captures the keystrokes and displays them on the screen using OSD. Its called gekey and has a couple of .c files ...

2014/05/13 13:19
231
C处理命令行参数 getopt 用法

http://www.youtube.com/watch?v=SjyR74lbZOc 这个视频比较专业,可爱 http://www.youtube.com/watch?v=15nClbf4gAY 这个视频比较实在 https://www.cs.rutgers.edu/~pxk/416/notes/c-tutorial...

2014/05/12 19:06
382
C笔记

Head first C cppcourse c part K&R C Bible ##Head first C P6:如果想检查program的exit status, windows使用echo %ErrorLevel%, Linux使用echo $? (钱的问题) P9:顺序执行两条命令 gcc zo...

2014/05/05 09:56
326
pointer & two-dimentional arrays

P352/1438 int data[3][4] = {{1,2,3,4}, {9,8,7,6}, {2,4,6,8}}; int total = sum(data, 3); int sum(int (*ar2)[4], int size);行指针(数组指针) int sum(int ar2[][4], int size); The...

2013/09/01 18:50
80
支持C++ 11: 使用Eclipse 和 MinGW-builds [on Windows]

This is my third post about C++11. In the last post I covered how to get started by using Visual Studio and the CTP. That’s fine if you are already used to visual studio, but ...

2013/09/01 00:41
1.4K
gcc 编译多个源文件

一. 常用编译命令选项 假设源程序文件名为test.c。 1. 无选项编译链接 用法:#gcc test.c 作用:将test.c预处理、汇编、编译并链接形成可执行文件。这里未指定输出文件,默认输出为a.out。 ...

2013/02/17 14:48
4.8K
标记一windows 控制台下运行cl命令

使用之前 打开控制台(CTRL+R>cmd);键入cl回车;如果出现如下提示: 'cl' 不是内部或外部命令,也不是可运行的程序或批处理文件。 则说明VS没有安装或者环境变量设置不正确,可以按照如下步骤...

2013/02/16 16:44
493
Eclipse CDT中运行wxWidgets实战

搞java的对cpp不熟,折腾了好久终于跑起来了。。 首先去下载mingw-get-inst-20120426.exe,并安装到C:\MinGW 下载地址为:http://sourceforge.net/projects/mingw/files/Installer/mingw-get...

2013/02/16 15:42
5K
vs2008使用eclipse快捷键

不像eclipse那样,能导入快捷键,唉,一个个改吧。 Edit.CompleteWord改成Alt+/ Edit.LineDelete --> Ctrl+D Window.CloseDocumentWIndow --> Ctrl+W Window.CloseAllDocuments --> Ctrl+Sh...

2013/02/15 23:36
1K
用 Visual C++ 2008 Express 编译你的第一个 wxWidgets 程序

转一:http://www.cnblogs.com/waynecheng/archive/2012/04/18/2455765.html 看上面这个就行了。。 转二: 我刚刚用 Visual C++ 2008 Express 成功编译了我的第一个非常简单的 wxWidgets 程序...

2013/02/15 17:22
243
Wxwidget编译环境安装与配置

本实例适用与ubuntu 9.10 (注:ubuntu12.04.1 LTS测试通过) C++ 基本开发环境: sudo apt-get install build-essential wxgtk2.8开发工具包: sudo apt-get install libwxgtk2.8-dev 所需的...

2013/02/14 14:00
895
Qt 经典出错信息之”Basic XLib functionality test failed...

此完整出错信息是在./configure阶段 Basic XLib functionality test failed! You might need to modify the include and library search paths by editing QMAKE_INCDIR_X11 and QMAKE_LIBD...

2013/02/14 12:34
2.4K

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部