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

Answer Posted / valli

x=57
y=94

Is This Answer Correct ?    29 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are preprocessor directives?

612


Explain what is output redirection?

649


What does the && operator do in a program code?

682


What are external variables in c?

528


What are reserved words with a programming language?

583






What is define directive?

627


What is difference between static and global variable in c?

523


How many keywords are there in c?

578


How can I change the size of the dynamically allocated array?

614


What does void main return?

590


Linked lists -- can you tell me how to check whether a linked list is circular?

627


When should the const modifier be used?

640


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1443


How to find a missed value, if you want to store 100 values in a 99 sized array?

798


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

1693