⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 array.c

📁 c语言是面向过程的程序语言
💻 C
字号:
/* ****************************** * Object Oriented Programming in C * * Author: Laurent Deniau, Laurent.Deniau@cern.ch * * For more information, please see the paper: * http://home.cern.ch/ldeniau/html/oopc/oopc.html * ****************************** *//*--------------------------------------*//*   Specialized array implementation   *//*--------------------------------------*//* integer memory block */#define gTypePrefix i#define gType1      int#include <g_array.c>#undef gTypePrefix#undef gType1/* double memory block */#define gTypePrefix d#define gType1      double#include <g_array.c>#undef gTypePrefix#undef gType1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -