Answer Posted / devi
c is a procedure oriented language and pertform tasks in form of algorithms
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is const and volatile in c?
What are the features of the c language?
What is the purpose of type declarations?
what is the difference between 123 and 0123 in c?
write a program fibonacci series and palindrome program in c
What is the difference between local variable and global variable in c?
Why can’t constant values be used to define an array’s initial size?
What is void pointers in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
When was c language developed?
Explain what is wrong in this statement?
What is pragma c?
How are structure passing and returning implemented?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
Why do we need arrays in c?