what is the Output?
int a=4 b=3;
printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++);
printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Answer Posted / lohith
997664 -2-1-1112
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
What is a double c?
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
What happens if a header file is included twice?
What do you mean by recursion in c?
Explain what is the difference between #include and #include 'file' ?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Write a program of advanced Fibonacci series.
Why do we use & in c?
How can I write a function analogous to scanf?
Do you know what are bitwise shift operators in c programming?
What are the different types of data structures in c?
What is the difference between text and binary modes?
code for replace tabs with equivalent number of blanks
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Explain can static variables be declared in a header file?