C語言字符串函數大全

函數名: stpcpy功   能: 拷貝一個字符串到另外一個用   法: char *stpcpy(char *destin, char *source);程序例:#include <stdio.h>#include <string.h>int main(void){char string[10];char *str1 = "abcdefghi";stpcpy(string, str1);prin
相關文章
相關標籤/搜索