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

Answer Posted / surendra singh bisht

x=57
y=91

Is This Answer Correct ?    2 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between union and structure in c?

578


How do I round numbers?

601


Explain what are linked list?

626


How can type-insensitive macros be created?

701


Write a program to find factorial of a number using recursive function.

646






Give basis knowledge of web designing ...

1574


How can this be legal c?

652


How can I ensure that integer arithmetic doesnt overflow?

608


What is the benefit of using an enum rather than a #define constant?

661


What are the uses of null pointers?

590


What are the types of data types and explain?

673


Is there a built-in function in C that can be used for sorting data?

744


What is file in c language?

576


Where are some collections of useful code fragments and examples?

716


What is the use of getchar functions?

676