
C语言
文章平均质量分 72
C语言数组
共黄昏
这个作者很懒,什么都没留下…
展开
-
[Warning] large integer implicitly truncated to unsigned type [-Woverflow]
[Warning] large integer implicitly truncated to unsigned type [-Woverflow]警告的原因是:整数溢出整数溢出:当整数达到它所能表述的最大值时,会重新从起点开始#include<stdio.h>int main(void){ unsigned a=12345678910; printf("a=%d\n",a); return 0;} 该程序输出以后并不是输出 a=12345678910而是:上面的代码原创 2020-08-12 17:48:15 · 12810 阅读 · 0 评论 -
C贪吃蛇代码详解(ncurse)
#include<curses.h> //使用 ncurse 必须调用它的函数库 #include<stdlib.h>#include<time.h>#define UP 1 //宏定义 UP 与 1 等效 #define DOWN -1#define LEFT 2#define RIGHT -2struct Snake //结构体 { int hang; int lie; struct Snake *next;};s原创 2020-08-06 03:15:11 · 853 阅读 · 0 评论 -
C语言一维数组介绍
认识数组定义数组时:int array[10]; 数组类型:int 数组名:array 元素个数:10在使用数组时:array[10]数组名:array 下标:10什么是数组?数组就是一种容器(放东西的容器),可以想象成一个柜子!第一层就是首元素 array[0]第二层就是第二个元素 array[1]第三层就是第三个元素 array[2]…第十层就是第十个元素 array[9]数组特点1.其中所有的元素具有相同的数据类型2.两原创 2020-07-24 14:36:57 · 557 阅读 · 0 评论