C学习

时间:2022-06-05 09:55:39
\a:警报

1、exit(),提前结束程序。include <stdlib.h>

2、getch()无缓存、getchar()有缓存,多条连用时注意末尾换行符否则始终、putchar()、putch()
3、ctype.h:isalpha()是否字母、isdigit()、isupper()、islower()、toupper()、tolower()
4、math.h:floor(),ceil(),fabs(),pow(),sqrt()全都返回浮点数
5、time.h:
time_t t;
srand(time(&t));
subDraw = (rand()%(numCards));
6、数组有赋初值剩下的就会被初始化为0。如int i[100]={123};否则未知
7、字符指针赋新值不比用strcpy()。如:pName ="hello world",只要不超过初值字符串长度。
控制使用安全性:char input[81];
char * iptr = input;
fgets(iptr, 81, stdin);
//<81正常。超出则最多获取80字符,81位置null零
8、stdlib.h:默认为char*型,失败返回0。
int * temps;
temps = (int *)malloc(10* sizeof(int));
free()
9、结构体变量名.结构体成员名
堆上存储结构体:item[ctr]->cost
顺序文件
10、fptr=fopen("C:\\emps. dat","w");
W:无论如何都新建,r:读,不存在时出错,返回0,a:附加,允许添加至文件末尾,不存在时新建
11、fprintf(fptr,"content %d\n"[, 变量名];
fputs(), fgets(arrayname, length, pointor):一次读一行,fputc(),fgetc()
12、打印到打印机:用设备名LPT1orLPT2作为第一个参数
随机文件
13、fopen(),fclose()
第二个参数变为:r+:打开已存在文件读写,w+:打开新文件读写,a+:附加模式打开文件,指向文章末尾。
14、fseek()移动文件指针
fseek(file Ptr, longVal, origin);
origin:SEEK_SET文件开头,SEEK_CUR当前位置,SEEK_END结尾
longVal:n*sizeo()
15、函数默认返回int型,所以返回类型为int的函数可以不声明函数原型,但强烈建议声明,否则在返回非int类型值时出错。
int fun(){}==fun(){}。
函数原型确保函数传参和返回值的正确性。