Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
PROC Main()
|
||||
CHAR ARRAY text="qwertyuiop"
|
||||
CHAR ARRAY res(20)
|
||||
BYTE n,m
|
||||
|
||||
PrintF("Original string:%E ""%S""%E%E",text)
|
||||
|
||||
SCopyS(res,text,2,text(0))
|
||||
PrintF("String without the top:%E ""%S""%E%E",res)
|
||||
|
||||
SCopyS(res,text,1,text(0)-1)
|
||||
PrintF("String without the tail:%E ""%S""%E%E",res)
|
||||
|
||||
SCopyS(res,text,2,text(0)-1)
|
||||
PrintF("String without the top and the tail:%E ""%S""%E%E",res)
|
||||
RETURN
|
||||
Loading…
Add table
Add a link
Reference in a new issue