what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sandeep
1,1,2
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
what are the 10 different models of writing an addition program in C language?
Explain what is a static function?
to find the closest pair
What are identifiers and keywords in c?
Why do we use null pointer?
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
Does c have an equivalent to pascals with statement?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is pointer & why it is used?
Is c procedural or functional?
can any one provide me the notes of data structure for ignou cs-62 paper
Why c is faster than c++?
Whats s or c mean?
Is null valid for pointers to functions?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record