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

Answer Posted / aru

x=55
y=92
ie; x= 35 + 20
ie; x=55;
then y= 56 +36
ie; y=99

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

a program that can input number of records and can view it again the record

1476


how can I convert a string to a number?

590


What is file in c language?

572


What does a pointer variable always consist of?

653


How are variables declared in c?

588






Compare array data type to pointer data type

592


What is c language and why we use it?

608


In C programming, what command or code can be used to determine if a number of odd or even?

614


What is the use of #define preprocessor in c?

607


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

1856


What is c method?

527


What are the advantages and disadvantages of a heap?

697


What are lookup tables in c?

540


Explain what is the purpose of "extern" keyword in a function declaration?

613


How many types of functions are there in c?

577