Pregunta de entrevista de Priya Softweb Solutions

inter change value of two variable without using 3rd one.

Respuesta de la entrevista

Anónimo

28 de feb de 2025

int i = 10, j = 20; i = i + j; // i = 30 j = i - j; // j = 10 i = i - j; // i = 20