structure that describe a hotel with name, address,rooms
and number of rooms

Answer Posted / sourisengupta

struct Hotel
{
char name[30];
char address[50];
int rooms;
int roomCount;
};

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me an example where stacks are useful?

587


What is meant by the term name mangling in c++?

514


Write a program to read the data and evaluate the results of the election. Print all output to the screen. Your output should specify: The total number of votes, the number of valid votes and the number of spoilt votes. The winner(s) of the election. Hint: An appropriate search should be used to determine the winner(s). The votes obtained by each candidate sorted in terms of the number of votes obtained. Hint: An appropriate sort should be used to sort the candidate(s). The Source code should be saved as VotingSystem. Project Input: Candidates’ Names and Numbers 2501 Victor Taylor 2502 Denise Duncan 2503 Kamal Ramdhan 2504 Michael Ali 2505 Anisa Sawh 2506 Carol Khan 2507 Gary Owen Votes 3 1 2 5 4 3 5 3 5 3 2 8 1 6 7 7 3 5 6 9 3 4 7 1 2 4 5 5 1 4 0 Project Output: Invalid vote: 8 Invalid vote: 9 Number of voters: 30 Number of valid votes: 28 Number of spoilt votes: 2 The winner(s): 2503 Kamal Ramdhan 2505 Anisa Sawh Candidate Score 2503 Kamal Ramdhan 6 2505 Anisa Sawh 6 2501 Victor Taylor 4 2504 Michael Ali 4 2502 Denise Duncan 3 2507 Gary Owen 3 2506 Carol Khan 2

2645


what do you mean by volatile variable?

581


What is Destructor in C++?

634






Is c the same as c++?

562


Describe about storage allocation and scope of global, extern, static, local and register variables?

727


When do we run a shell in the unix system?

558


Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.

641


What is the difference between a type-specific template friend class and a general template friend class?

550


Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement

628


Name four predefined macros.

592


Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.

1711


What is the difference between #define debug 0 and #undef debug?

637


What is the difference between new() and malloc()?

614