Skip to content

Instantly share code, notes, and snippets.

@a7r3
Last active February 11, 2020 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a7r3/ba9b82ce05b27c5969fff2a281c3dc07 to your computer and use it in GitHub Desktop.
Save a7r3/ba9b82ce05b27c5969fff2a281c3dc07 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void main() {
int a = 10;
int b = 1;
int temp;
printf("%d %d", a, b);
temp = a;
a = b;
b = temp;
printf("%d %d", a, b);
}
a, b = 10, 1
print(a, b)
a, b = b, a
print(a, b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment