mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 05:11:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			233 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			233 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example5;
 | |
| 
 | |
| Uses strings;
 | |
| 
 | |
| { Program to demonstrate the StrLCopy function. }
 | |
| 
 | |
| Const P : PCHar = '123456789ABCDEF';
 | |
| 
 | |
| var PP : PCHar;
 | |
| 
 | |
| begin
 | |
|   PP:=StrAlloc(11);
 | |
|   Writeln ('First 10 characters of P : ',StrLCopy (PP,P,10));
 | |
| end.
 | 
