Delphi System.StrCopy 复制Char 字符串

Delphi System.StrCopy 复制Char 字符串

原型:

char* strcpy(char* strDest,const char* strSrc);

 

Delphi 使用示例:

var
  arr: array[0..5] of Char; 
begin
  StrCopy(arr, 'Delphi');
  ShowMessage(arr);    {Delphi}
end;

  

创建时间:2020.06.02  更新时间:

 

posted on 2020-06-02 15:03  滔Roy  阅读(1083)  评论(0编辑  收藏  举报

导航