Array Input/Output.
An array is a variable that can store multiple values. For example, if you want to store 5 integers, you can create an array for it.
How to declare an array?
dataType arrayName[arraySize];
For example,
float mark[5];
Program to take 5 values from the user and store them in an array and Print the elements stored in the array
Output
Enter 5 integers: 1
-3
34
0
3
Displaying integers: 1
-3
34
0
3
Mixed-up sentence exercise
Put the parts in order to form a sentence. When you think your answer is correct, click on "Check" to check your answer. If you get stuck, click on "Hint" to find out the next correct part.