C
@vi_v587
每一天,都对自己昨天写的程序嗤之以鼻。
展开
-
快速开平方取倒数的算法
Quake-III Arena (雷神之锤3)是90年代的经典游戏之一。 该系列的游戏不但画面和内容不错,而且即使计算机配置低,也能极其流畅地运行。这要归功于它3D引擎的开发者约翰-卡马克(John Carmack)。事实上早在90年代初DOS时代,只要能在PC上搞个小动画都能让人惊叹一番的时候,John Carmack就推出了石破天惊的Castle Wolfstein, 然后再接再励,d...转载 2020-01-11 11:21:23 · 1455 阅读 · 0 评论 -
(转)失落的C语言结构体封装艺术及__packed 关键字 的作用
http://blog.jobbole.com/57822/ https://blog.csdn.net/GZZXBCXM2005/article/details/78163001 struct { char a; //1byte int b; //4byte char c[2] //2byte double d; //8byte }St...转载 2019-01-14 11:26:05 · 934 阅读 · 0 评论 -
(转)#ifdef __cplusplus extern "C" { #endif //一段代码 #ifdef __cplusplus } #endif
https://blog.csdn.net/chenguoguo512/article/details/79787044 一般的样式是这样的: #ifdef __cplusplus extern "C"{ #endif ....... #ifdef __cplusplus } #endif 首先,__cplusplus是cpp中的自定义宏,那么定义了这个宏的话表示这是一段cpp的代码...转载 2019-01-14 11:36:56 · 263 阅读 · 0 评论