入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
10
2016-11
C语言几种常见数据类型的范围 2016-11-10
转自:http://blog.csdn.NET/mafuli007/article/details/7325510 速查表: char -128 ~ +127 (1 Byte) short -32767 ~ + 32768 (2 Bytes) unsigned short 0 ~ 65536 (2 Bytes) int -2147483648 ~ +21
15
2018-01
C语言各种数据类型取值范围 2018-01-15
转自:http://blog.csdn.net/mafuli007/article/details/7325510 速查表: char -128 ~ +127 (1 Byte) short -32767 ~ + 32768 (2 Bytes) unsigned short 0 ~ 65536 (2 Bytes) int -2147483648 ~ +21
13
2017-03
C语言的数据类型及范围 2017-03-13
数据类型 序号 类型与描述 1 基本类型:它们是算术类型,包括两种类型:整数类型和浮点类型。 2 枚举类型:它们也是算术类型,被用来定义
05
2017-03
C语言signed char数据类型范围为什么是-128-127 2017-03-05
提到这个问题,我们先来做一个-128的原码补码转换(前提假设看到这篇博客的看官会原码补码)          -128            原码     1000 0000      
22
2014-10
C语言中数据类型的表示范围 2014-10-22
问题:sizeof(int) = 2,int的表示范围为什么是-2^15~2^15-1? 答:对于有符号数,最高位为符号位。二进制原码最大值为0111111111111111=2^15-1,最小值为 1
03
2011-11
获得Windows系统中文件属性——GetFileAttributes详解 2011-11-03
在MSDN中,文件总共有15种属性,根据磁盘的分区格式不同,文件的属性也会不同。 现在针对 GetFileAttributes 函数的返回值做以下整理 返回字段
04
2017-01
查找系统中的大文件(Windows) C++程序 2017-01-04
#include #include #include #include #include #include #include using namespace std; const int max_size = 102400000; //100M map fileInfoMap; void FindFile(char * pFilePath) { WIN32_FIND
07
2015-07
C++中的文件路径表示技巧 2015-07-07
文件路径的表示可以分为绝对路径和相对路径:   绝对路径表示相对容易,例如   //pDummyFile = fopen("D:\vctest\glTexture\texture\dummy.bmp", "rb"); 给出

			
				C/C++ Windows API——获取系统指定目录
C/C++ Windows API——获取系统指定目录 2016-10-13
函数 头文件 作用 GetModuleFileName 获取当前进程已加载模块的文件的完整路径 GetCurrentDirectory 获取当前目录 GetSystemDirectory 获取System32
03
2017-08
C++遍历文件夹下的所有文件 2017-08-03
转自:http://blog.csdn.net/idmer/article/details/53524443 数据分多个文件存储,读取数据就需要对多个文件进行操作。首先就需要定位到文件的名字,之后