Horje
how to swap using bitwise operator Code Example
how to swap using bitwise operator
#include<stdio.h>
void main()
{
    int a,b;
    printf("Enter the value of a and b: ");
    scanf("%d %d", &a, &b);
    a = a^b;
    b = b^a;
    a = a^b;
    printf("Value of a is: %d\n", a);
    printf("Value of b is: %d\n", b);
}




Whatever

Related
all numpy random functions Code Example all numpy random functions Code Example
los hermanos hoffman Code Example los hermanos hoffman Code Example
sqlx rust Code Example sqlx rust Code Example
awdaWD Code Example awdaWD Code Example
Minimal Project Angular Code Example Minimal Project Angular Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7