<string.h>常用函数使用,和<stdlib.h>malloc()free()的使用
#include <stdio.h>#include<string.h>#include<stdlib.h>int main(){//strlen 的使用 printf("%d\n",strlen("hello"));//strcmpchar s1[]={"abc"};char s2[]={"Abc"};printf("%d",strcmp(s1,s2)) ;//相同返回0 前面大返回1 前面小返回-1 printf("%d",'a'-'A'); .