对字符串的操作总结

 

#include"stdio.h"
#include"string.h"
int main()
{
 char word[20];
 char *p;
 char a[]="hello";

 printf("Please input a stirng:\n");
 scanf("%s",word);   //gets(word);
 printf("*********\n");
 printf("%s\n",word); //puts(word);

 printf("%s\n",a);

 p="jiangxiaohui";
 printf("%s\n",p);

 return 0;
}

你可能感兴趣的:(对字符串的操作总结)