a) Write a program in C to store elements in an array and print it. ( 6 marks) Input 10 elements in the array: element \( -0: 1 \) element \( -1: 1 \) element \( -2: 2 \) Expected Output : Elements in array are: 1123456789
Real Tutor Solution
Answer
Solution
Sign in to Unlock Answers for Free!
A Learning Platform Trusted by Millions of Real Students and Teachers.
Reviewed and approved by the UpStudy tutoring team
Extra Insights
Here's a simple C program that allows the user to input 10 elements into an array and then prints them out as specified.
```c
#include