最終更新:2013-04-14 (日) 00:41:08 (4023d)  

strcpy
Top / strcpy

文字列のコピー

char *strcpy(char *s1, const char *s2);

動作

  • 文字型配列 *s1 に文字列 *s2 を '\0' までコピーします

代用