Computer Science, asked by Sowmikareddy2498, 11 months ago

What will be the output of the following code segment. int x=24,y=39, 2=45; 2=x+y; y=2-y; x=2-y; printf("\n %d%d%d",x,y,z);

Answers

Answered by shivanyavelmurugan
0

#include <stdio.h>

int main()

{

int x=24,y=39,z;

y=2-y;  

x=2-y;

printf("\n %d%d%d",x,y,z);

   return 0;

}

Output:

39-370

Similar questions