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

📄 matrix9.c

📁 linux下的C语言开发
💻 C
字号:
/*-*//******************************************************** * Question:						* *	Why does memset successfully initialize		* *	the matrix to -1, but when we try to use it to 	* *	set every element to 1, we fail?		* ********************************************************//*+*/#define X_SIZE 60#define Y_SIZE 30int matrix[X_SIZE][Y_SIZE];#define init_matrix() \    memset(matrix, 1, sizeof(matrix));

⌨️ 快捷键说明

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