Skip to content

Instantly share code, notes, and snippets.

@WindAzure
Last active August 4, 2018 16:12
Show Gist options
  • Save WindAzure/c4d9106901df2727b9e7a3814c2a6618 to your computer and use it in GitHub Desktop.
Save WindAzure/c4d9106901df2727b9e7a3814c2a6618 to your computer and use it in GitHub Desktop.
algorithm exercise
#include <stdio.h>
int main()
{
int a = 3;
int b = 2;
a = a - b;
b = b + a;
a = b - a;
printf("%d %d\n", a, b);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment