Assignment# 2 Submission Type: Hard Copy (Print Out) Submission Date: 09.01.23 - Monday If you have any problems about the assignment, feel free to send an email to me [akile.oday@emu.edu.tr] with the title [ITEC114 assignment2]. Write a C program : - do declare a structure of dog which has four members namely name, breed, age, color - Initialize a structure with the following at the declaration time name: Rex breed: Golden Retriever age: 5 color: Black - Use a pointer to structure - Use a function display() to print dog information in the following format: Dog's name: Rex Dog's breed: Golden Retriever Dog's age: 5 Dog's color: Black - Use a function changeInc() to change the name of dog from Rex to Jack and to increase age of dog by 1 year and print them in the following format: Dog's new name is: jack Dog's age is: 6 1