Advertisement
dllbridge

Untitled

Jun 29th, 2024
647
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. ............................
  2.  
  3. .org  10h
  4.  
  5.      ld   A, 4
  6.      ld   B, 2
  7.      add  A, B
  8.  
  9.      inc  A
  10.      dec  A
  11.  
  12. ...........................
  13.  
  14. #include  <stdio.h>
  15.  
  16.  
  17.  
  18. /////////////////////////////////
  19. int main()                     //
  20. {
  21.      
  22.     int n1 = 2;
  23.     int n2 = 4;  
  24.  
  25.     n1 = n1 + n2;
  26.    
  27.     n1 ++;
  28.     n1 --;    
  29.     printf("n2 = %d\n", n1);  
  30. }
  31.  
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement