we have an array of 100 elements. Each element contains some text. We want to:
append a star character to the end of every fifth element
remove every second character from every tenth element, and…
add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
append a star character to the end of every fifth element
remove every second character from every tenth element, and…
add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Comment