Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
swap two numbers without arithematic operators
//gcc 5.4.0 #include <stdio.h> int main() { void swap(int,int); int a=2,b=5; swap(a,b); } void swap(int a,int b) { a = a^b; b = a^b; a = a^b; printf("a and b are :%d,%d",a,b); return 0; }
run
|
edit
|
history
|
help
1
Dangling
Difference between memcpy n strncpy
rsqrt from 0
summing long int
150116_OrdenMatriz
My first 2D array
Ascii contrasena segura
CheckProcessorEndianness
MÓDULO 3, PREGUNTA 1, GUÍA 4
fibonacci2