Advertisement
dllbridge

Untitled

Aug 13th, 2019
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.47 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. void Dima(int nA);
  6.  
  7.  
  8. ///////////////////////////////////////////////////
  9. int main()                                       //
  10. {
  11.    
  12.   __int8 nA = 128;   // 4 байта = 64 ьита
  13.  
  14.     printf("size nA =   %d\n", sizeof(nA));
  15.    
  16.     Dima(nA);
  17.      
  18.  return 0;  
  19. }
  20.  
  21.  
  22.  
  23.  
  24. ///////////////////////////////////////////////////
  25. void Dima(int nB)                                      //
  26. {
  27.      
  28.      printf(" Address = %d  %d", &nB, 5);
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement