Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Address the following in your response: You are working as a Software Programmer for one of the big retail company. You need to implement the

Address the following in your response:

You are working as a Software Programmer for one of the big retail company. You need to implement the program that can store at least 15 customer information using the Array concept. You need to implement the individual array to store each of below field.

  • CustomerName
  • CustomerAddress1
  • City
  • State
  • Zip

Once the data is stored in the array, then you need to loop thru the entire zip loop and print all the zip code on the command line.

You need to implement a program in any programming language that should store customer information for below fields.

  • CustomerName
  • CustomerAddress1
  • City
  • State
  • Zip

Here is the sample way to declare the array in C++.

int Zip [5] = {30041, 36600, 75062, 78952, 12071};

We are storing 5 different zip codes using the above statement.

  • Implement array for each of the field
  • Store at least 15 values in each of the array
  • Loop thru the Zip array and print all the Zip codes one by one from the array

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions