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

what is the output?

Answer Posted / mahendra gupta

x=57
y=94

Is This Answer Correct ?    4 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to print fibonacci series without using recursion?

576


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

1677


writ a program to compare using strcmp VIVA and viva with its output.

1494


What is a pointer and how it is initialized?

574


Differentiate between #include<...> and #include '...'

593






What is a good data structure to use for storing lines of text?

570


What is the benefit of using an enum rather than a #define constant?

624


How do you construct an increment statement or decrement statement in C?

711


What is the use of extern in c?

619


Explain how do you search data in a data file using random access method?

669


explain what is a newline escape sequence?

655


Why main is used in c?

560


Are global variables static in c?

646


What is the purpose of ftell?

577


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

629