Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

This assignment focuses on using struct structures. Create a program called stru

ID: 3536511 • Letter: T

Question

This assignment focuses on using struct structures.

Create a program called structs.c that does the following:

typedef struct {
   char firstName[30];
   char lastName[30];
   char street[35];
   char city[20];
   char state[3];
   int zip;
   char phone[15];
   int accountId;
} Customer;

Prompt the user for values for each of the variables in each structure, i.e. you will be asking for 10 firstName values, 10 lastName values, and so forth. HINT: Loops...

After all of the values for the structure variables have been input, you need to prompt the user for a state string, and then display the values of all variables in each structure where the state string matches the user's input.

You can assume that the user always enters proper data - no input validation is required. Also all the strings are words without spaces, i.e you are expected to read the string using scanf("%s") and not gets or fgets

Enter Data for Customer 0
Enter First Last Phone: Doug Oregon 123-456-7890
Enter Address (Street City State ZIP): Main Portland OR 12345


Enter Data for Customer 1
Enter First Last Phone: Doug Washington 123-456-7890
Enter Address (Street City State ZIP): Main Portland WA 12345


Enter Data for Customer 2
Enter First Last Phone: Doug California 123-456-7890
Enter Address (Street City State ZIP): Main Portland CA 12345


Enter Data for Customer 3
Enter First Last Phone: Doug Nevada 123-456-7890
Enter Address (Street City State ZIP): Main Portland NV 12345


Enter Data for Customer 4
Enter First Last Phone: Doug Colorado 123-456-7890
Enter Address (Street City State ZIP): Main Portland CO 12345


Enter Data for Customer 5
Enter First Last Phone: Another Colorado 123-456-7890
Enter Address (Street City State ZIP): Main Portland CO 12345


Enter Data for Customer 6
Enter First Last Phone: Doug Arizona 123-456-7890
Enter Address (Street City State ZIP): Main Portland AZ 12345


Enter Data for Customer 7
Enter First Last Phone: Doug Florida 123-456-7890
Enter Address (Street City State ZIP): Main Portland FL 12345


Enter Data for Customer 8
Enter First Last Phone: Doug Georgia 123-456-7890
Enter Address (Street City State ZIP): Main Portland GA 12345


Enter Data for Customer 9
Enter First Last Phone: Doug Jones 123-456-7890
Enter Address (Street City State ZIP): Main Portland CO 12345


Enter 2-character state code: CO
Data for Customer 4
Account: 4
Name: Doug Colorado
Addr: Main Portland CO 12345
Phone: 123-456-7890


Data for Customer 5
Account: 5
Name: Another Colorado
Addr: Main Portland CO 12345
Phone: 123-456-7890


Data for Customer 9
Account: 9
Name: Doug Jones
Addr: Main Portland CO 12345
Phone: 123-456-7890

CS 133U


Explanation / Answer

#include <stdio.h>

#include <string.h>


typedef struct {

char firstName[30];

char lastName[30];

char street[35];

char city[20];

char state[3];

int zip;

char phone[15];

int accountId;

} Customer;


int main()

{

Customer c[10];

int i;

char st[3];

for(i=0;i<10;i++)

{

printf(" Enter Data for Customer %d",i);

printf(" Enter First Last Phone: ");

scanf("%s",&c[i].firstName);

scanf("%s",&c[i].lastName);

scanf("%s",&c[i].phone);

printf(" Enter Address (Street City State ZIP): ");

scanf("%s",&c[i].street);

scanf("%s",&c[i].city);

scanf("%s",&c[i].state);

scanf("%s",&c[i].zip);

c[i].accountId = i;

}

printf(" Enter 2-character state code: ");

scanf("%s",st);

for(i=0;i<10;i++)

{

if(!strcmp(c[i].state,st))

{

printf(" Data for Customer %d",i);

printf(" Account %d",c[i].accountId);

printf(" Name: %s %s",c[i].firstName,c[i].lastName);

printf(" Addr : %s %s %s %s",c[i].street,c[i].city,c[i].state,c[i].zip);

printf(" Phone : %s ",c[i].phone);

}

}

}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote