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

what is the output?

Answer Posted / mastan vali.shaik

55 59

Is This Answer Correct ?    3 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain main function in c?

629


Subtract Two Number Without Using Subtraction Operator

357


Why is not a pointer null after calling free?

598


Why is struct padding needed?

633


5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.

1582






Difference between Function to pointer and pointer to function

634


How does placing some code lines between the comment symbol help in debugging the code?

548


Can you write the function prototype, definition and mention the other requirements.

663


What are the advantage of c language?

554


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1660


What are the types of i/o functions?

683


Is fortran faster than c?

582


Can i use “int” data type to store the value 32768? Why?

756


Explain what is the difference between #include and #include 'file' ?

585


What is || operator and how does it function in a program?

630