主页

Doxygen代码注释

Doxygen 官网 Doxygen——根据代码注释生成文档的工具_doxygen可以导出java方法里的注释吗-CSDN博客

阅读更多

程序语言的版本

History of C - cppreference.com Year Informal name Official standard 1972 first release — 1978 K&R C — 1989, 1990 ANSI C, C89, ISO C, C90 ANSI X3.159-1989 ISO/IEC 9899:1990 1999 C99, C9X ISO/IEC 9899:1999 2011 C11, C1X ISO/IEC 9899:2011 2018 C17, C18 ISO/IEC 9899:2018 2024 C23, C2X ISO/IEC 9899:2024 Future C2Y —

阅读更多

typedef

typedef是 C 语言中的关键字,直译可以理解为 类型定义。 C typedef signed char int8_t; typedef short int16_t; typedef int int32_t; typedef long long int64_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned long long uint64_t; 没有无符号的浮点数。 char 1...

阅读更多

Winget笔记

winget source remove winget winget source add winget https://mirrors.ustc.edu.cn/winget-source

阅读更多

const

const 定义一个常量 const是一个C/C++中的保留词,用来定义一个常量。常量通常是一些固定的数值,比如光的速度$C$、圆周率$\pi$、以及一分钟总共有60s等等。 但光速和圆周率,都是一些难以精确的数据,在使用时必须选取一定的精度,因此需要在显眼的位置标注你要使用的具体数值,比如 const double C=299792458.458; // unit m/s const double C=299792458; // unit m/s const double PI = 3.14 const double PI = 3.1415926 不同的需求选择不同的精度,因此,将程序所使用的常量,统一地在文件头或指定的文件中标注出来,是很必要的。 const ...

阅读更多