main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / daya
11 16
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
provide an example of the Group by clause, when would you use this clause
What is the scope of global variable in c?
What is context in c?
What is the difference between array_name and &array_name?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Why #include is used in c language?
What are structures and unions? State differencves between them.
What is n in c?
How will you divide two numbers in a MACRO?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is static memory allocation? Explain
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is pass by reference in c?
What is declaration and definition in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.