main()
{
int x=5,y=10,z=0;
x=x++ + y++;
y=y++ + ++x;
z=x++ + ++y;
printf("%d%d%d\n",x,y,z);
}



main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",..

Answer / vaishnavi

x=16,y=28,z=34

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More C Interview Questions

write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)

26 Answers   ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,


What is the Difference between Class and Struct?

10 Answers   Motorola,


Explain about block scope in c?

0 Answers  


What is key word in c language?

4 Answers   ABC,






Explain what does the format %10.2 mean when included in a printf statement?

0 Answers  


What is a wrapper function in c?

0 Answers  


What is volatile variable how do you declare it?

0 Answers  


What is operator promotion?

0 Answers  


implement OR gate without using any bitwise operator.

1 Answers   Alcatel, Wipro,


in iso what are the common technological language?

0 Answers  


Explain why C language is procedural?

0 Answers   GE,


Categories