employer cover photo
employer logo
employer logo

Global Edge Software

Is this your company?

Global Edge Software interview question

how do u swap number using bitwise operator

Interview Answer

Anonymous

12 Feb 2018

#include int main() { int x=10,y=5; x = x^y; y = x^y; x = x^y; printf("After swapping: x=%d, y=%d",x,y); return 0; }

2