Translated with Google:
hello. I have a doubt with the creation of a code, in which I must create a function of type arrangement, which asks the console n times for the values of each arrangement and then they get out of order.
ALL THIS IN C LANGUAGE
-> This looks like homework. Show us what you implemented so far. We will help you with your code and logics.
So far, I would help you this way. This could be one general algorithm: define the type, in main define an array a of that type, input n, loop n-times to input the values a[i]. What do you mean with "they get out of order"? If you want to show the array, loop n-times over the array and cout a[i].
Regards, Guido