edited by
22 views
0 0 votes

Find the output of the following

#include
int main()
{
int x=5, y=9;
x=(x=x+y)-(y=x-y);
printf("%d %d ", x, y);
return 0;
}
  1. $514$
  2. $59$
  3. $145$
  4. $95$

Please log in or register to answer this question.

Answer:
Position:
Show:

Related questions

0 0 votes
0 0 answers
39
39 views
Shubham Sharma 2 asked Jun 28
39 views
A $\_\_\_\_$ is a pictorial depiction of the schema of a database that shows the relations in the database, their attributes, and primary keys and foreign keys.relational...
0 0 votes
0 0 answers
29
29 views
Shubham Sharma 2 asked Jun 28
29 views
Consider the following table of arrival time and burst time for three processes $\mathbf{P}_{0}, \mathbf{P}_{1}, \mathbf{P}_{2}$\[\begin{array}{|c|c|c|}\hline\text{Proces...
1 1 vote
0 0 answers
60
60 views
Shubham Sharma 2 asked Jun 28
60 views
According to Boolean law: $\mathrm{A}^{=}=$?$0$$\mathrm{A}$$\mathrm{A}^{=}$$1$
0 0 votes
0 0 answers
36
36 views
Shubham Sharma 2 asked Jun 28
36 views
Consider the following recursive function.int function (int x, int y) { if (y<=0) return x; return function $(y, x % y); }The above recursive function computes $...