main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / rukmanee
output : x=10;
y=16;
| Is This Answer Correct ? | 20 Yes | 7 No |
Post New Answer View All Answers
What is c language in simple words?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is static and volatile in c?
Why c is faster than c++?
Write a c program to demonstrate character and string constants?
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 is 1d array in c?
What is meant by errors and debugging?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Is that possible to add pointers to each other?
How can I send mail from within a c program?
In c language can we compile a program without main() function?
Why calloc is better than malloc?
Tell me what is the purpose of 'register' keyword in c language?