摘要: main.c 1 #include <stdio.h> 2 #include "other.h" 3 int main() 4 { 5 int addr[10] = {12,353,24512,0,23,51,245,2,5623,24}; 6 int len = sizeof(addr)/size 阅读全文
posted @ 2021-03-03 23:56 王廷胡_白嫖帝 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 /*************************** 3 * 头文件:#include <stdio.h> 4 * 函数:int fseek(FILE *stream, long offset, int whence); 5 * 功能:重定向我们的文 阅读全文
posted @ 2021-03-03 23:54 王廷胡_白嫖帝 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 struct Student 4 { 5 char m_name[20]; //姓名 6 int m_age; //年龄 7 int m_height; //身高 8 }; 9 typedef struct S 阅读全文
posted @ 2021-03-03 23:53 王廷胡_白嫖帝 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 文件存储,无链表,使用100数组实现简易学生管理系统 main.c 1 #include <stdio.h> 2 #include "menu.h" 3 #include "student.h" 4 Student_t stu[100]; 5 int Stu_size = 0; 6 int main 阅读全文
posted @ 2021-03-03 23:50 王廷胡_白嫖帝 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 int main(int argc, char *argv[]) 3 { 4 if (argc != 3) 5 { 6 printf("请输入三个参数\n"); 7 return -1; 8 } 9 10 FILE *fp_read = NULL; 11 阅读全文
posted @ 2021-03-03 23:46 王廷胡_白嫖帝 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 用户并不关心誉诚智能家居系统用的是什么无线技术,只要求联网简单、稳定。各种协议并存将长期存在,短期内还看不到一统江湖的无线标准。在BroadLink 我们采取Wi-Fi加LP-WAN两种技术,同时在系统层面接入BLE、ZigBee以及KNX,485总线。 多块单片机 加上各传感模块,就可以集成智能家 阅读全文
posted @ 2021-03-03 23:28 王廷胡_白嫖帝 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 int main() 3 { 4 double addr[10] = {12.23,13.412,1251.23,234.4,215.6,62.2,652.3,635.2,63.6,324.6}; 5 char *p_char; 6 short *p_s 阅读全文
posted @ 2021-02-28 01:03 王廷胡_白嫖帝 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 //const :是一个关键字,作用定一个常型变量 3 //使用: const 类型 变量名 = 初始值; 4 //注意事项:1.必须赋初始值 2.程序执行期间只读不可写 5 6 7 8 /******************************** 阅读全文
posted @ 2021-02-28 00:56 王廷胡_白嫖帝 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <strings.h> 3 /******************* 4 * 头文件:#include <strings.h> 5 * 函数:char *index(const char *s, int c); 6 * 功能:从已有字符 阅读全文
posted @ 2021-02-28 00:54 王廷胡_白嫖帝 阅读(1156) 评论(0) 推荐(0) 编辑
摘要: 注意:提示"正在转码",那么刷新一下就可以播放了。 作品总集: 链接:https://pan.baidu.com/s/1wRiV2kN9Zz3LURzok_i5uA 提取码:6666 嵌入式智能小车:语音识别,图像识别,主车和从车互动 链接:https://pan.baidu.com/s/1dZkJ 阅读全文
posted @ 2021-02-28 00:21 王廷胡_白嫖帝 阅读(51) 评论(0) 推荐(0) 编辑