main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / divyansh
output will be 1o 16
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What is wrong with this program statement? void = 10;
Explain what are compound statements?
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
how can I convert a string to a number?
What are two dimensional arrays alternatively called as?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What are data types in c language?
Why do we use null pointer?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Is c pass by value or reference?
Explain how does flowchart help in writing a program?
What are c header files?
What is volatile, register definition in C
Is using exit() the same as using return?