jQuery鼠标指针特效

随笔分类 -  C && Linux

基础知识
摘要:双链表 队列 doublueList.h #include<stdlib.h> #include<stdio.h> #include<assert.h> #include<stdbool.h> typedef int LTDataType; typedef struct DList { LTData 阅读全文
posted @ 2023-05-10 14:54 僵小七 阅读(10) 评论(0) 推荐(0) 编辑
摘要:gcc_manual 参考 (1)-o 选项:可以指定编译后输出的可执行文件的名称。 如:helloworld.c 编译后指定输出文件名为test,使用方式如下: gcc -o test helloworld.c (2)-c 选项:只编译C语言代码,不进行汇编连接。 如 gcc -c hellowo 阅读全文
posted @ 2023-05-06 10:56 僵小七 阅读(19) 评论(0) 推荐(0) 编辑
摘要:#C语言中的*和&具体分析 在C语言中的用法 指针的声明:int *p 或 int* p; 读法:p是指向一个整数类型的指针。 复合指针: int **p;或int** p; 读法 p是一个指向一个指向整数类型的指针的指针。 解引用: x=*p 把指针p指向的值赋值给x。 int a = 10; i 阅读全文
posted @ 2022-08-01 19:27 僵小七 阅读(82) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <stdlib.h> struct node { int value; struct node* left; struct node* right; }; typedef struct node NODE;//结构体变量 typedef str 阅读全文
posted @ 2022-03-03 11:37 僵小七 阅读(25) 评论(0) 推荐(0) 编辑
摘要:1 /* 2 贪吃蛇 >链表 3 */ 4 5 #include "stdio.h" 6 #include "string.h" 7 #include "windows.h" //windows编程头文件 8 #include "time.h" 9 #include "conio.h" //控制台输 阅读全文
posted @ 2022-02-28 16:33 僵小七 阅读(38) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> #include<string.h> #include<time.h> //系统时间 #include<unistd.h> //linux_time函数 typedef struct user{ //结构体 char name[20]; int age; char 阅读全文
posted @ 2021-09-08 15:36 僵小七 阅读(40) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node* next; }Node; Node* createListHead(); Node* createListRear(); void 阅读全文
posted @ 2021-08-24 19:38 僵小七 阅读(38) 评论(0) 推荐(0) 编辑
摘要:在计算机程序中,每一个变量都有一个相应的内存位置。每一个内存位置都定义了可使用 & 运算符访问的地址,它表示了在内存中的一个地址。 int main () { int var_runoob = 10; int *p; // 定义指针变量 p = &var_runoob; printf("var_ru 阅读全文
posted @ 2021-08-19 15:24 僵小七 阅读(127) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示