Language: 
Русский
English
  {StrLComp.PAS}
  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
 {Sample code for the StrLComp function.}
uses Strings, WinCrt;
 var
   Result: PChar;
   S1, S2: array[0..79] of Char;
 begin
   Readln(S1);
   Readln(S2);
   if StrLComp(S1, S2, 5) = 0 then
     Result := 'equal'
   else
     Result := 'different';
   Writeln('The first five characters are ', Test);
 end.

 
 ::
      
 ::
      
 ::