C語言學習第六天(庫函數的查看與使用)ide
網址:http://www.cplusplus.com/ (C語言庫函數查找&查看)函數
#define _CRT_SECURE_NO_WARNINGS學習
/* strcpy example */spa
#include <stdio.h>get
#include <string.h>string
int main()it
{io
char str1[] = "My name is Barry.xiang !";class
char str2[30];語言
char str3[30];
strcpy(str2, str1);
strcpy(str3, "I am come from Huaihua!");
printf("str1: %s\nstr2: %s\nstr3: %s\n", str1, str2, str3);
return 0;
}