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

Answer Posted / pushpendra

if you put the values x=25 and y=32 so both values will be simply added because there will proceed clrscr() command .
so write answer is 57 ,61.

Is This Answer Correct ?    11 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are local variables c?

551


Write a program for Overriding.

688


Explain how can you be sure that a program follows the ansi c standard?

865


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

675


What is dynamic memory allocation?

810






How do I use strcmp?

639


c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above

615


Are bit fields portable?

679


what is a function method?give example?

1914


How can I get the current date or time of day in a c program?

652


Why c is called a mid level programming language?

607


What functions are in conio h?

660


Difference between malloc() and calloc() function?

654


Explain what are the __date__ and __time__ preprocessor commands?

594


What is pass by reference in c?

615