// Pantea Aria // static arrays, declare, initialise, read, print // when you need to store multiple values of the same type #include int main(void) { //declare an int array of size 5 // assign values to all elements // print out the first and third values from your array // input integers into the first two elements of array // read 5 new integers into this array // print out all elements of the array return 0; }