employer cover photo
employer logo
employer logo

Plintron Global Technology Solutions

Est-ce votre entreprise ?

Question d’entretien chez Plintron Global Technology Solutions

The Only question ever asked in that interview is to write code to swap two variables without third variable

Réponses aux questions d'entretien

Utilisateur anonyme

22 nov. 2014

int main() { int x = 10, y = 5; // Code to swap 'x' and 'y' x = x + y; // x now becomes 15 y = x - y; // y becomes 10 x = x - y; // x becomes 5 printf("After Swapping: x = %d, y = %d", x, y); return 0; }

2

Utilisateur anonyme

29 mai 2013

well known question I think

1