Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <windows.h>
- ////////////////////////////////////////////////////////
- int main() //
- {
- int a = 7, //
- b = 44; ///
- int buf = a;
- a = b;
- b = buf;
- printf("a = %d, b = %d", a, b);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement