C Interview Questions
Questions Answers Views Company eMail

what is the difference between structure and union?

3 4300

why effort estimation is important?

1 3236

develop a breakfast order booking system using Functions, Structures and Arrays. The system is to support the operations shown to the user in the following system’s menu: Welcome to Asim's Restaurant Select an operation? 1 Make a breakfast order 2 Modify existing order 3 Cancel existing order 4 Print Bill 5 Exit Type in your selection (1, 2, 3, 4 or 5): The program will include an array of structures. The structure type is called MenuItem, and the array of structures should be declared as menu[50] to store upto 50 breakfast menu items. The MenuItem structure must have the following 4 data fields (i.e. members): Code, description, unitprice, and quantity. Your program must define at least the following functions:  Function LoadData(…) that loads the data of breakfast menu items from an input file menu.txt into the array menu.  Five separate functions to handle the program main menu five tasks shown above. In general, function main() should load the data into the array menu and display the main menu of the above mentioned tasks. Based on the option selected, the corresponding function should be called. Users must make an order before requesting modify, cancel or print order bill (See the given sample run). Here is a more detailed explanation on the above tasks and functions. LoadData(…) Opens the input file menu.txt (you will create it) containing breakfast menu items data (See below) and assign these values to the corresponding array menu structure fields. Assign zero to the quantity field of the loaded menu items. Welcome to Asim's Restaurant Select an operation? 1 Make a breakfast order 2 Modify existing order 3 Cancel existing order 4 Print Bill 5 Exit Type in your selection (1, 2, 3, 4 or 5): MakeOrder(…) This function is called when the user selects option 1 from the main menu. It first displays the breakfast menu items to the user (stored in the array menu) along with all the necessary information (item code, description and unit price). It then requests the user to select an item using the item code (see the sample run). When the user enters an item code number the program should verify the code number and increment the quantity of the selected item in the array menu. Your program should reject invalid item codes and request the user to re-enter the item code or stop the entry. PrintBill(…) This function is called when the user selects option 4 from the main menu. The function displays the breakfast menu items in the breakfast order by printing the values of all MenuItem members of the array menu that have quantity value above zero. Print a nicely formatted bill (See the sample run). CancelOrder(…) This function is called when the user selects option 3 from the main menu. It will cancel the breakfast order by setting the quantity value of all the array menu structures to zero. ModifyOrder(….) This function is called when the user selects option 2 from the main menu. The task of this function is to allow the user to edit an existing breakfast order with two operations: Adding more breakfast items and/or altering the breakfast item that were ordered before (examine the sample program run). Handling Errors and Invalid Input Your program should reply safely to any erroneous situation or input with appropriate message to the user and flow nicely and correctly to the next operation (Examine the sample program run). Additional functions Use of functions is highly recommended for any additional special tasks needed by your solution. Global variables are not allowed except for max array menu size 50. You must pass the needed parameters through functions parameter lists.

1964

write a program to display all prime numbers

1452

Meaning of () in c

1 3127

Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

Ignou, Microsoft,

3839

print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar

IBM,

4 7143

how the compiler treats any volatile variable?Explain with example.

Tata Elxsi,

1 6908

pascal triangle program

2 4692

triangle number finding program...

HCL,

1 2904

wat are the two methods for swapping two numbers without using temp variable??

2 3327

wat are the two methods for swapping two numbers without using temp variable??

2 3527

write a c prog for removing duplicate character from an array and sorting remaining elements using a single array

1 5603

1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop

2 3235

String concatenation

2 3267


Post New C Questions

Un-Answered Questions { C }

What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

727


the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset

637


What is hashing in c?

638


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

1779


Explain what is a static function?

628






When should you use a type cast?

585


What are header files? What are their uses?

632


What are the benefits of c language?

641


What is a program?

659


What is indirection? How many levels of pointers can you have?

653


What is scope and lifetime of a variable in c?

570


Can we declare function inside main?

561


How do you override a defined macro?

695


Why is c called a mid-level programming language?

720


What are the c keywords?

745