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

Answer Posted / vijay

56
93

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are bit fields? What is the use of bit fields in a structure declaration?

1492


What is cohesion and coupling in c?

582


What is the difference between printf and scanf in c?

739


What is default value of global variable in c?

553


What is a void * in c?

589






When should structures be passed by values or by references?

573


What is f'n in math?

609


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

2112


What is logical error?

594


What are different types of pointers?

554


Explain what is the stack?

627


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

676


What is the use of #include in c?

568


What is the difference between break and continue?

598


How do we print only part of a string in c?

579