自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 三个数取中间值

三个数找中间的数

2023-01-05 14:04:52 389

原创 联合体 结构体位域

联合结构体,位和字节的关系

2023-01-04 18:14:32 135

原创 滑动平均法

滑动平均滤波法

2022-03-29 10:36:17 263

原创 UltraEdit UE中文乱码

上面红框是你要设置的格式,下面红框是你当前格式,我目前这个用的是936,改成936,乱码就好了

2021-12-17 16:04:15 1434

原创 UltraEdit试用期结束

ue绕过试用期方法打开UE这个软件打开x64dbg这个软件x64dbg软件左上角,文件->附加,找到UE软件,双击打开点“符号”,搜索“IsActivatedSoftwareKey”,点“锁定“选中左边第一行,按“下箭头”,一下下按,直到右边空白出现一行东西这里也不用上下搜,锁定完后直接找到左边protectionplusdll.dll这个文件,右边就出现了双击右边搜出来的这个对着sub ……(不想回去截图了,我直接上改后的图)这条汇编指令,点右键,二进制删掉

2021-12-17 15:50:21 8549 17

原创 结构体初值为0

#include "stdio.h"#include "string.h"#include "math.h"typedef struct{ unsigned char a; unsigned char b; unsigned char c; unsigned char d; unsigned char e; unsigned char f;}TT;TT acc[7]={ {0}, {1,2,3,4,5}, {2,3,4,4,0}, {3,4,5,0,9,0}, {4,

2021-09-07 10:11:28 682

原创 数组元素负数情况

#include "stdio.h"#include "string.h"#include "math.h"int main( void ){ unsigned int a[5] = {0,1,2,3,4}; unsigned int* p; p = &a[4]; printf("%d\n",p[-1]); printf("%d\n",(&a[4])[-2]); return 0;}结果:

2021-09-07 09:56:54 602

原创 keil中代码里没有重定义,但出现重定义警告

warning: #47-D: incompatible redefinition of macro “LWIP_PLATFORM_ASSERT”原本这里有警告重定义,但是代码里面其他地方没有任何关于这个宏的定义,改的地方如下:这个Define(预处理符号)选项卡里面也有一个 LWIP_PLATFORM_ASSERT把这里面的这个LWIP_PLATFORM_ASSERT删除掉就可以了,警告就没了!!...

2021-08-16 15:47:41 2530 1

原创 keil中.sct文件warning

; *************************************************************; *** Scatter-Loading Description File generated by uVision ***; *************************************************************LR_IROM1 0x08000000 0x00200000 ; load region size_region{ E

2021-06-25 09:35:17 539

原创 const指针

const int p; // p is a int const. p是一个int型常量const int *p; // p is a point to int const. p是一个指针,指向int型常量。即p是一个指向int型常量的指针。int const *p; // 与上相同 const int 和 int const 是一样的意思。《C++ primer》中采用第一种写法。int * const p; // p is a const point to int. p是一个指向i

2021-06-17 16:35:38 40

原创 sizeof()和strlen()

#include "stdio.h"#include "string.h"#include "math.h"int main( void ){ char Strings[] = {"Hello"}; char *p = Strings; unsigned int a; unsigned int b; unsigned int c; unsigned int d; a = sizeof(Strings); b = strlen(Strings); c = sizeof(p);

2021-06-17 14:33:20 51

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除