Question: Help Asap Problem #4 Opoints) Write code to accomplish each of the following: a) Define a structure called part containing integer variable partNumber and character
Problem #4 Opoints) Write code to accomplish each of the following: a) Define a structure called part containing integer variable partNumber and character array partName (a string that may be as long as 25 characters, including the terminating NULL). b) Define PART to be a synonym for the type struct part. (Hint: think typedef) c) Use PART from the previous question to declare a variable x, an array variable y of size 10, and a pointer variable ptr, all of which refer to the PART data type. d) Read a number and a name from the keyboard and store them in individual members of variable x. Use scanf for the numeric input and fgets for the string. e) Assign the member values of variable x to element index 3 of array y 0 Assign the address of array y to the pointer variable ptr. g) Use printf and the pointer variable ptr to display both member values of element 3 of the array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
