Question
Write a C program : - do declare a structure of dog which has four members namely Name Color age, color - Initialize a structure
Write a C program : - do declare a structure of dog which has four members namely
Name
Color
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
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started