void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}

Answer Posted / myfriend_shankar

ans is 59 93
because
void main()
{
1.x=x++ + y++; 25+32 (bcoz of x=x++ so) 26+32=58
2.y=++x + ++y; 59+34=93(after this x=59)
(becoz of x=x++ the last value 59 be the x value)

Is This Answer Correct ?    13 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above

682


What is an lvalue in c?

698


What is clrscr ()?

641


Is javascript based on c?

598


Write a program that accept anumber in words

1256






What is the use of putchar function?

655


What are the different types of errors?

648


What are called c variables?

576


What is the use of header files?

611


What are c preprocessors?

681


Explain the Difference between the New and Malloc keyword.

690


Which is an example of a structural homology?

791


explain what is a newline escape sequence?

692


How does #define work?

654


Explain argument and its types.

608