A structure will be defined as typedef struct _state { char name [ 31 ] ; // to store 30 chars of state name char capital [ 31 ] ; // to store 30 char of capital } State_T ; State_T StateList1[6] ; // array of structures , one cell to store state and capital The pair of states and capitals are California Sacramento New York Albany Nevada Carson City New Mexico Santa Fe Utah Salt Lake City Texas Austin in the main function main ( ) { Task 1: Can you assign these pairs of states and cities to the structure StateList1 using strcpy. Do not change the declaration I already given Task 2: Create a new array StateList2 and assign these pairs of states and cities to the structure StateList2 (all during declaration, do not use strcpy) Task 3: call printStateNameAndCapitalsUsingPointer passing the StateList1and length of the array Task 4: Call printStateNameAndCapitalsUsingArrayIndex passing the array StateList2 and and length of the array } void printStateNameAndCapitalsUsingPointer ( State_T *ptr, int len ) { // Task 5: Fill in the code // use the ptr to print // This function will print the state in 30 character space, and capital in 30 character space. } void printStateNameAndCapitalsUsingArrayIndex ( State_T data[ ] , int len ) { // Task 6 // print the structure using data array //This function will print the state in 30 character space, and capital in 30 character space. }
A structure will be defined as
typedef struct _state {
char name [ 31 ] ; // to store 30 chars of state name
char capital [ 31 ] ; // to store 30 char of capital
} State_T ;
State_T StateList1[6] ; // array of structures , one cell to store state and capital
The pair of states and capitals are
California Sacramento
New York Albany
Nevada Carson City
New Mexico Santa Fe
Utah Salt Lake City
Texas Austin
in the main function
main ( )
{
Task 1: Can you assign these pairs of states and cities to the structure StateList1 using strcpy. Do not change the declaration I already given
Task 2: Create a new array StateList2 and assign these pairs of states and cities to the structure StateList2 (all during declaration, do not use strcpy)
Task 3: call printStateNameAndCapitalsUsingPointer passing the StateList1and length of the array
Task 4: Call printStateNameAndCapitalsUsingArrayIndex passing the array StateList2 and and length of the array
}
void printStateNameAndCapitalsUsingPointer ( State_T *ptr, int len )
{
// Task 5: Fill in the code
// use the ptr to print
// This function will print the state in 30 character space, and capital in 30 character space.
}
void printStateNameAndCapitalsUsingArrayIndex ( State_T data[ ] , int len )
{
// Task 6
// print the structure using data array
//This function will print the state in 30 character space, and capital in 30 character space.
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps