Hi ,
I have a type int arr[6], and the value is {1,2,3,4,5,6}. How should I express this data using YAML?
int arr[6]
{1,2,3,4,5,6}
Use this, and see what form does the output take.
You should simply use a list:
[1, 2, 3, 4, 5, 6]
- 1 - 2 - 3 - 4 - 5 - 6