Problem 688. Convert a structure into a string

Created by Aurelien Queffurust

Convert the contents of each fields into a string.

Example with an input structure s with 2 fields :

s.age = '33'
s.prenom ='aurélien'

The output will be the string of size 1*11 :

str =
33
aurélien

which is the same of typing str = ['33',10,'aurélien']

Tags

Problem Group

21 solvers submitted 62 solutions (2.95 solutions/solver).