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

Answer Posted / mahi

x=55
y=57

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

5 Write an Algorithm to find the maximum and minimum items in a set of ā€˜nā€™ element.

1576


What are the types of i/o functions?

671


How can I dynamically allocate arrays?

581


What is the ANSI C Standard?

768


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

1456






What are global variables and explain how do you declare them?

565


Explain what are its uses in c programming?

587


all c language question

1860


what value is returned to operating system after program execution?

1592


How is a pointer variable declared?

584


Why do we use & in c?

580


What is type qualifiers?

649


Write a code to generate a series where the next element is the sum of last k terms.

723


What are the types of data files?

719


A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

615