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

Feb 12, 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