Now THAT'S progress! Good job.I Made a Mistake. I Sincerely apologise for my mistakes. I feel very bad to know that I am wasting your time. I am really sorry for repeating same mistake. I have been told you english is not my native language so that's why I struggle at some point
Please look at once again my work.
Where you say, "Print the element of the array" in the first loop, that is confusing because it implies you are going to print the value of an array element before getting it from the user. A better label might be "Prompt user for array element".
You should get in the habit of using "int main(void)" as your main() declaration. Leaving out the 'void' is an old form and is strongly deprecated by the C standard.
Your code listing is still inconsistent in its indenting. Using proper and clean indenting is extremely important for conveying code structure to humans (the compiler doesn't care).
The next step might be to check the value that the user enters for the number of elements against the legal values (at least 1 but no more than 10, in this case) and if the number is not legal, print an error message and ask again. Do this in a loop until they enter a legal value.