Write a C program and declare an integer type array with capacity 7. Take input to the array from the keyboard. Display the 7ᵗʰ element of the array.
Code; `#include<stdio.h> int main() {int a[7]; // Declare an integer array with capacity 7int i; } Output Example: Enter 7 […]