文章列表

筛选

向世界级C语言大师致敬。

摘要:个人原创!!!!#include int main() {     printf(&((char)NULL)["www.如鹏网\0.com"]+((*"ru"-*"peng")<<SEEK_CUR……

实用不常用的字符串字符函数记录

摘要:统一头文件<ctype.h>字符串:strncpy(p, p1, n) 复制指定长度字符串 strcat(p, p1) 附加字符串 strncat(p, p1, n) 附加指定长度字符串 strcas……

c++中string类的简单介绍

摘要:#include "iostream" #include "string" using namespace std; /*@author:浅滩 *family:c++中string类的简单介绍……

qsort快排函数cmp用法总结

摘要:函数参数:qsort(s,n,sizeof(s[0]),cmp);int数组:int cmp(const void *a, const void *b){       return(*(int *)a……

练习过程中的心得

摘要:1.在类型转换这个陷阱上,一定要注意隐藏的自动转换,很容易出错,如 float = int 这类型,最后printf的时候,会为0.0000……

求“完数”

摘要:一个数如果恰好等于不包含它本身所有因子之和,这个数就称为"完数"。 例如,6的因子为1、2、3,而6=1+2+3,因此6是"完数"。 #include<iostream>#include<cstdio……