Advertisement
dllbridge

Untitled

Dec 24th, 2024
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.42 KB | None | 0 0
  1.  
  2. #include   <stdio.h>
  3.  
  4. void foo(int *p);
  5.  
  6. /////////////////////////////////////////////////////
  7. int main()                                         //
  8. {
  9.    
  10.  
  11.     int nArr[99] = {100, 1, 2, 333};           
  12.  
  13.     foo(&nArr[1]);
  14.     foo( nArr);    
  15.    
  16. return 0;
  17. }
  18.  
  19.  
  20. //////////////////////////////////////////
  21. void foo(int *p)
  22. {
  23.      
  24.      
  25.     printf(" p = %d\n",  p);        
  26.     printf("*p = %d\n", *p);  
  27. //  printf(" p = %d\n",  p);    
  28. //  printf("*p = %d\n", *p);        
  29. }
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. /*
  42.  
  43. #include   <stdio.h>
  44.  
  45.  
  46.  
  47. /////////////////////////////////////////////////////
  48. int main()                                         //
  49. {
  50.    
  51.    
  52.     int  n =  7;
  53.     int *p = &n;
  54.    
  55.  
  56.                
  57.     printf(" n = %d\n",  n);    
  58.     printf("&n = %d\n", &n);  
  59.     printf(" p = %d\n",  p);    
  60.     printf("*p = %d\n", *p);      
  61.    
  62. return 0;
  63. }
  64.  
  65.  
  66.  
  67. */
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82. /*
  83.  
  84. #include   <stdio.h>
  85. #include  <locale.h>       //  здесь "живёт" setlocale(LC_ALL, "rus");
  86.  
  87.  
  88. int foo();  
  89.  
  90. /////////////////////////////////////////////////////
  91. int main()                                         //
  92. {
  93.     int  n = 7;
  94.     int *p = &n;
  95.     setlocale(LC_ALL, "rus");
  96.                
  97.     printf("Верные символы %d", foo());    
  98.  
  99. return 0;
  100. }
  101.  
  102.  
  103.  
  104. /////////////////////////////////////////////////////
  105. int foo()                                          //
  106. {
  107. return 81;  
  108. }
  109.  
  110. */
  111.  
  112.  
  113.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement