Skip to content

Instantly share code, notes, and snippets.

@itsjohncs
Created October 8, 2012 06:42
Show Gist options
  • Save itsjohncs/3851073 to your computer and use it in GitHub Desktop.
Save itsjohncs/3851073 to your computer and use it in GitHub Desktop.
CS 10 SI - Lab Worksheet Week 2
int a = 5;
int b = 10;
cout << "a: " << a << " b: " << b << endl;
a = b;
b = a;
cout << "a: " << a << " b: " << b << endl;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment