小白知识点常用整理

memset(a, 0, sizeof(a));//a为数组名;

fgets(buf, MAXN, fin);//将读取完整的一行放在字符数组buf中, 当一个字符都没有读到时, gets返回NULL;

在<ctype.h>中定义的isalpha(c)[判断是否为大写字母或小写字母], isdigit, isprint等工具可以用来判断字符的属性, 而toupper(c), tolower等工具可以用来转换大小写;



你可能感兴趣的:(小白知识点常用整理)