1. 程式人生 > WINDOWS開發 >Delphi System.StrCopy 複製Char 字串

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  更新時間: