I am beginner in C. I want to make an array whose size will be taken from user from scanf function because an array may have any size which is not known when program starts.
And how can I input array element as well:
I will like to have my program output as:
Please enter the number of array element: 4 Enter the elements: 12 43 5 6 The elements you entered are: 12 43 5 6
Is it possible to do this? How can I make my output like this?