Computer Science, asked by shekhawatgeetashri, 1 day ago

Given that x=25 and y=6 evaluate and state the values of the variables for the following: x+=y x/=y

Answers

Answered by Anonymous
1

Answer:

#include<stdio.h>

int main()

{

   int x=5,y=15;

   x= x++ + ++y;

   y = ++x + ++y;

   printf("%d %d",x,y);

   return 0;

Similar questions