<返回更多

C语言知识点总结篇

2019-09-29    
加入收藏

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;
}
C语言知识点总结篇

 

gets和scanf

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;创作不易,未经同意,转载请注明出处~

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>