Question

2. Write a function that takes a list of strings and a suffix, and returns a list of strings, in which

each string is built by appending the suffix to each string in the original list. eg: (my-

append (list "util" "main" "delta") ".cpp") will return ("util.cpp",

"main.cpp", "delta.cpp"). Use the builtin string-append function to append strings.

Fig: 1