Prompt the user to enter the data to populate the structure

Assignment Help Computer Engineering
Reference no: EM132217496

What is wrong with this code! The problem I get is when I use white space in input (for the char arrays). How can I fix this problem! If there is no error you are probably inputting incorrectly.

Here is the problem prompt:

Write a program that creates a structure template with the following data fields. The program should then prompt the user to enter the data to populate the structure. Finally, use printf( ) to display the information entered by the user.

Account number

Account owner street address (string)

Account owner city/state (string)

Account owner zip code

Account balances

Account credit limit

Account name

When I compile it skips over some scanf statements?

#include <stdio.h>
#include <string.h>

struct info {
int num;
char address[100];
char city_state[100];
int zip;
float balance;
float limit;
char name[100];
};

int main()
{
struct info acct;

printf("Please enter your account number:\n");
scanf("%d", &acct.num);

printf("Please enter your account owner address:\n");
scanf("%s", &acct.address);

printf("Please enter your account owner city/state (input: city state):\n");
scanf("%s", &acct.city_state);

printf("Please enter your account owner's zip code:\n");
scanf("%d", &acct.zip);

printf("Please enter your account balance:\n");
scanf("%f", &acct.balance);

printf("Please enter your account limit:\n");
scanf("%f", &acct.limit);

printf("Please enter your account name:\n");
scanf("%s", &acct.name);

printf("Account number: %d\n", acct.num);
printf("Account owner street address:");
puts(acct.address);
printf("Account owner city/state:");
puts(acct.city_state);
printf("Account owner zip code:%d\n", acct.zip);
printf("Account balances:%.2f\n", acct.balance);
printf("Account credit limit:%.2f\n", acct.limit);
printf("Account name:");
puts(acct.name);

return 0;

}

Reference no: EM132217496

Questions Cloud

Write a new method that receives the ages array : Write a new method called printArray that receives the ages array and prints the content of the array separated by commas.
Produce a program that sorts a list of numbers in ascending : Your job is to produce a program that sorts a list of numbers in ascending order. Your program will need to read-in, from a file, a list of integers.
Evaluate the use of post-loss risk transfer mechanisms : Advanced risk financing and transfer - To enable candidates to understand the role that risk financing and risk transfer play in risk management
Write out the algorithm on paper of how you propose : If a user enters one of these values, you are to print out the channel number along with its network affiliation.
Prompt the user to enter the data to populate the structure : The program should then prompt the user to enter the data to populate the structure. Finally, use printf( ) to display the information entered by the user.
Allow a process to create another process running : Write both the popen() and pclose() functions and use them in a program. Remember that pclose() allows the original process to be a good parent.
Write a method search that takes input of an numerical array : Write a method Search that takes input of an numerical array A of size n and a specific value key.
Ask the users to enter the number of days in the specified : Test this class, the program will first ask the users to enter the number of days in the specified period and the temperature on the first day.
Identify the research approach typically used for each issue : Identify the research approach typically used for each issue by filling out the University of Phoenix Material: Communication Research Methods Matrix.

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd