Pergunta de entrevista da empresa Priya Softweb Solutions

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

Resposta da entrevista

Sigiloso

28 de fev. de 2025

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