标签:一起 deb 动态 地址 存储 include img real 写入
Debug和Release版本比较
32位与64位
指针
数组与指针
函数与指针
malloc和free函数
calloc和realloc函数
内存分区
sizeof和strlen
#include <iostream>
#include <string.h>
int main()
{
char str[10] = "hello";
cout << sizeof(str) <<endl << sizeof("hello")<< endl << str(str)<< endl;
system("pause");
return 0;
}
Unicode字符问题
结构体
结构体字节对齐机制
共同体union
深拷贝与浅拷贝
文件分类
流式文件:由一个个字符(字节)数据顺序组成;
设备文件:非存储介质(键盘、显示器、打印机等);
二进制文件:数据按其在内存中的存储形式原样存放;
文件处理方法
fscanf和fprintf函数
文件型结构体
struct _iobuf
{
char *_ptr;//当前缓冲区内容指针
int _cnt;//缓冲区还有多少个字符
char *_base;//缓冲区的起始地址
int _flag;//文件流的状态,是否错误或者结束
int _file;//文件描述符
int _charbuf;//双字节缓冲,缓冲2个字节
int _bufsiz;//缓冲区大小
char *_tmpfname;//临时文件名
};
fopen打开模式
阻塞模式和非阻塞模式
system("start notepad");
system("notepad");
欢迎关注微信公众号:村雨1943;创作不易,未经同意,转载请注明出处~
标签:一起 deb 动态 地址 存储 include img real 写入
原文地址:https://www.cnblogs.com/cunyu1943/p/11601847.html