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

What are c identifiers?

606


What is the purpose of sprintf() function?

581


What is a char c?

565


Is this program statement valid? INT = 10.50;

654


given post order,in order construct the corresponding binary tree

2291






What does *p++ do? What does it point to?

592


What are external variables in c?

511


Can main () be called recursively?

607


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

627


What is the heap?

641


Explain what is the difference between #include and #include 'file' ?

545


Explain how do you determine a file’s attributes?

570


What is the difference between single charater constant and string constant?

593


Discuss the function of conditional operator, size of operator and comma operator with examples.

651


What functions are used for dynamic memory allocation in c language?

574