const
P1: PChar = 'CodeGear';
P2: PChar = 'Delphi';
var
S: array[0..15] of Char;
begin
StrCopy(S, P1);
StrCat(S, ' ');
StrCat(S, P2);
ShowMessage(StrPas(S)); {CodeGear Delphi}
ShowMessage(S); {CodeGear Delphi}
end;
StrCopy、StrCat、StrPas
原创
©著作权归作者所有:来自51CTO博客作者JLee79的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:窗体图片背景
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
c语言strcat()/strcat_s()函数详解
前言 先看下strcat()/strcat_s()函数调用报错:放大一点严重
openGLES3.0 strcat_s函数详解 字符串