const使用.md
在C语言中,const关键字可以用于指针类型的声明中,它用于指定指针所指向的数据是常量,即该数据不能被修改。下面是一个使用const指针的示例代码:int main(){ const int x = 10; const int *ptr = &x; *ptr = 20;
C语言
未读
C语言数据结构_链队列
链队列一、定义结构体#define _CRT_SECURE_NO_WARNINGS 1#include <stdio.h>#include <stdlib.h>#define OVERFLOW -1#define OK 1#define ERROR 0typedef int
C语言
未读
C语言数据结构_循环队列
队列一、定义#define _CRT_SECURE_NO_WARNINGS 1#include <stdio.h>#include <stdlib.h>#define MAXSIZE 100 // 队列最大长度#define OVERFLOW 0typedef int Sta