C语言
mg_hover
这个作者很懒,什么都没留下…
展开
-
HC32F460 USART 利用中断收发数据
/******************************************************************************* * Copyright (C) 2016, Huada Semiconductor Co., Ltd. All rights reserved. * * This software is owned and published by: * Huada Semiconductor Co., Ltd. ("HDSC"). * * BY DO原创 2021-04-26 14:06:41 · 2100 阅读 · 4 评论 -
C语言学习笔记:指针函数,函数指针,数组函数指针
#include "stdio.h"#include "stdlib.h"#include <string.h>/*--------------指针函数---------------*/ int *f(int a,int b ){ int *p = (int*)malloc(sizeof(int)); //给指针分配内存 *p = a...原创 2018-11-17 14:13:33 · 225 阅读 · 0 评论 -
C语言学习笔记 -回调函数
#/*-------------------回调函数--------------------------*/#include &amp;lt;stdio.h&amp;gt;#include &amp;lt;stdlib.h&amp;gt;typedef struct __OP{ //初始化函数指针 float (*P_ADD)(float ,float); float (*P_SUB)(flo.原创 2018-11-17 19:54:12 · 205 阅读 · 0 评论 -
C语言笔记 :返回值空类型的函数指针
void filefun(){ //定义初始化函数printf(“file\n”);};void Editofun(){printf(“edito\n”);};int main(){ typedef void(*func)(); //定义为空的函数的类型func ptr = filefun; // 函数的地址送给指针函数ptr(); ...原创 2018-12-14 16:55:12 · 2171 阅读 · 0 评论 -
C笔记: 返回结构体指针
#include<stdio.h>struct lab{char a;char b;char c;};struct lab Lab_Val={0,1,2}; //声明结构体变量struct lab *pLab; //声明结构体指针//----返回结构体指针,之后就可以用该指针访问结构体中所有的变量了struct lab *test(struct lab *pStru...原创 2019-03-08 19:30:19 · 7267 阅读 · 1 评论 -
计算指向数组的指针的元素和字节
#include <stdio.h>unsigned char arr[] = {1,2,3,4,5};int main(){char *p = arr;int b = sizeof(arr) / sizeof(arr[0]);// 计算数组元素个数int c = sizeof(arr); // 计算数组的字节printf(" %d \n",b);printf("...原创 2019-05-15 14:02:51 · 325 阅读 · 0 评论 -
枚举类型作为形参,并用指针取值
枚举类型作为形参,并用指针取值#include<stdio.h>#include <malloc.h>typedef enum{NO = 1,YES = 2}AA;void fun(AA *sa){ printf("%d",*sa);}int main(){ AA *d; d = (AA*)malloc(sizeof(AA)); // 给指针地址分...原创 2019-05-27 10:42:03 · 3555 阅读 · 0 评论 -
Vscode 修改左侧 资源管理器的面板大小
在Visual Studio Code的安装目录下依此找到Microsoft VS Code\resources\app\out\vs\workbench\ 目录下的workbench.main.css文件,打开搜索 .monaco-workbench .part>.content(注意.part前面有空格),修改字体大小,保存关闭文件和编辑器,从新打开,左侧资源管理器字体大小的视...转载 2019-06-16 09:15:37 · 7831 阅读 · 0 评论 -
C 语言笔记: 利用变量转换成字符串打印
C 语言笔记: 利用变量转换成字符串打印#include <stdio.h>int main( void ) { char buffer[50], s[] = "computer", c = 'l'; int i = 35, j; // 格式化并打印各种数据到buffer j = sprintf( buffer , " Integer: %...原创 2019-07-04 10:33:15 · 406 阅读 · 0 评论