Free Pascal Program Tutorial 24 - String Manipulation - Lazarus

Strings are an array of characters. Each character can be called upon in the same manner as calling an array element. In this example name is a string : name := ’Billy’; writeln(name[5]); y will be written to the screen
Back to Top