main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

what is the output?

Answer Posted / vignesh1988i

x=57
y=95

Is This Answer Correct ?    9 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1065


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

649


Explain how can you restore a redirected standard stream?

592


what is the height of tree if leaf node is at level 3. please explain

1602


Explain what are the standard predefined macros?

653






What is getch () for?

679


Can we declare function inside main?

570


Explain #pragma statements.

604


Why is it usually a bad idea to use gets()? Suggest a workaround.

906


How to set file pointer to beginning c?

669


Without Computer networks, Computers will be half the use. Comment.

1877


Are there constructors in c?

597


Explain the ternary tree?

603


write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

1452


What does the error 'Null Pointer Assignment' mean and what causes this error?

743