Advertisement
dllbridge

Untitled

Jan 25th, 2022
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1.  
  2. #include  <stdio.h>
  3.  
  4. #include  <windows.h>
  5.  
  6. ////////////////////////////////////////////////////////
  7. int main()                                           //
  8. {
  9.  
  10.     int a =  7,  //
  11.         b = 44; ///
  12.      
  13.      
  14.     int buf = a;
  15.    
  16.         a =   b;
  17.         b = buf;
  18.      
  19.     printf("a = %d, b = %d", a, b);
  20. }
  21.  
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement