Skip to content

Instantly share code, notes, and snippets.

@surinoel
Created July 18, 2019 23:56
Show Gist options
  • Save surinoel/12ac8af48095f2d0999eef674c4ecee4 to your computer and use it in GitHub Desktop.
Save surinoel/12ac8af48095f2d0999eef674c4ecee4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#define swap(a, b) {int tmp=a; a=b; b=tmp;}
int main(void) {
int a = 3, b = 4;
printf("%d %d", a, b);
swap(a, b);
printf("%d %d", a, b);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment