随笔分类 - C
摘要:https://en.wikipedia.org/wiki/Forward_declarationIn C++, classes and structs can be forward-declared like this:class MyClass;struct MyStruct;关于c++的头文件...
阅读全文
摘要:“在printf语句前用clrscr函数清屏,要使用这个函数和getch()函数,需要在程序开头再包含头文件conio.h。”
阅读全文
摘要:K&R C style:#include int add(x, y)int x, y;{ return x + y;}int main(){ int a = 2; int b = 3; int c = add(a, b); printf("%d\n", c); r...
阅读全文
摘要:http://www.bluesnews.com/abrash/http://fabiensanglard.net/Building Quake 2 with Visual Studio 2013http://www.raspberrypi.org/forums/viewtopic.php?f=78...
阅读全文
摘要:ftp://ftp.idsoftware.com/idstuff/doom/
阅读全文
摘要:constint*u;//指向constint的指针intconst*u;//同上int*constu;//指向int的指针intconst*constu;//指向const对象的const指针constint*constu;//同上
阅读全文
摘要:typedef void (*callbackFun)(int a, int b);struct exm { int type; callbackFun fun;};A pointer is a special kind of variable that holds the add...
阅读全文
摘要:GTK (GIMP Toolkit) 起源於开发用来做为GIMP (General Image Manipulation Program)的一套工具. GTK建立在GDK (GIMP Drawing Kit)的上层, 基本上是将Xlib功能包装起来. 它被称为GIMP toolkit是因为原来是写来...
阅读全文
摘要:读到0x1A时,fread就认为结束!今天调到的bug,以解决unsigned int16 范围是从0-65535 十六进制是 0X0000 - 0XFFFFint16 范围是 -32768-32767 负数以补码方式储存对一个整数的补码再求补码,等于该整数自身。补码 = 反码+1-5的原码(100...
阅读全文
摘要:Windows操作系统下主要用了三个1.编译器套件MinGWMinimalistic GNU for Windows。她是一个建立在GCC和binutils 项目上的编译器系统。和其他GCC的移植版相比,她可以说是最接近Win32的一个了。因为,MinGW几乎支持所有的Win32API,这也是Min...
阅读全文