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

Answer Posted / chandrasekhar

56 93

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.

1740


What does struct node * mean?

603


What are types of structure?

605


Why c is called object oriented language?

592


What are valid signatures for the Main function?

702






Write program to remove duplicate in an array?

603


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1015


What is a string?

667


Explain what is the best way to comment out a section of code that contains comments?

723


Explain what is the concatenation operator?

628


What is volatile variable in c with example?

589


Tell us two differences between new () and malloc ()?

616


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

942


What is function prototype in c with example?

581


What is a lvalue

665