/* * bc_05_array.c * * Description: Arrays in C * Date: May 2022 * Author: Katia Bulekova * */ #include int main () { // declare three-element vectors and initialize it with some values // print the first and last elements // print an element of your array with index 3 return 0; }