Const
Hints: array [13] 0.. of String=
(' 1 ',
'2',
'3',
'4',
'5');
The begin
end;
CodePudding user response:
Const char * Hints="12345";CodePudding user response:
const char Hints [14]="12345";
CodePudding user response:
Support, come on the buildingCodePudding user response:
Const char Hints [14]={' 1 ', '2', '3', '4', '5'};//
CodePudding user response:
The