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

Answer Posted / lucky

correct answer is 57 94

Is This Answer Correct ?    16 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is C language ?

1531


Explain the difference between exit() and _exit() function?

637


Why malloc is faster than calloc?

593


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

692


What is identifier in c?

547






Why are all header files not declared in every c program?

602


What is the purpose of main() function?

660


Is there a way to compare two structure variables?

617


How can variables be characterized?

1653


How are variables declared in c?

600


illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

1587


How would you rename a function in C?

623


Is c is a procedural language?

601


What is the use of linkage in c language?

618


Explain what is the general form of a c program?

625