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

Answer Posted / guest

58

Is This Answer Correct ?    32 Yes 49 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the features of c languages?

635


What are the types of data types and explain?

677


differentiate built-in functions and user – defined functions.

644


can we change the default calling convention in c if yes than how.........?

2043


What is difference between %d and %i in c?

704






praagnovation

1789


Why can’t we compare structures?

822


Explain how are portions of a program disabled in demo versions?

665


What are multidimensional arrays?

662


Where register variables are stored in c?

560


Differentiate between Macro and ordinary definition.

740


How can I send mail from within a c program?

592


What is the purpose of clrscr () printf () and getch ()?

607


How can this be legal c?

660


How can you avoid including a header more than once?

572