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.   }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter13: Structures
Section: Chapter Questions
Problem 3PP
icon
Related questions
Question

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.

 

}

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Graphical User Interface
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr