how does the C compiler interpret the following two
statements
p=p+x;
q=q+y;
a. p=p+x;
q=q+y
b. p=p+xq=q+y
c. p=p+xq;
q=q+y
d. p=p+x/q=q+y
Answer Posted / hansaj
Answer is a
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is a function method?give example?
How old is c programming language?
What is the difference between c &c++?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Where does the name "C" come from, anyway?
What are local static variables? How can you use them?
How do you list a file’s date and time?
What is the explanation for prototype function in c?
What do you mean by a sequential access file?
Is printf a keyword?
Why is c known as a mother language?
Is c compiled or interpreted?
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