Advertisement
dllbridge

Untitled

Oct 24th, 2024 (edited)
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.12 KB | None | 0 0
  1.  
  2.  
  3. #include  <stdio.h>
  4.  
  5. char  sz[99] = "SONY Pictures";
  6.                
  7. ///////////////////////////////////////////////////////
  8. int main()                                           //
  9. {
  10.     printf("address sz = %d\n", sz    );
  11.     printf("adr &sz[1] = %d\n", &sz[1]);
  12. }
  13.  
  14.  
  15. //  Добавил Выше пример
  16.  
  17.  
  18.  
  19.  
  20. #include  <stdio.h>
  21.  
  22.                
  23. ///////////////////////////////////////////////////////
  24. int main()                                           //
  25. {
  26.     char  sz[99] = "SONY Pictures";
  27.      
  28.     sz[4] = 0;
  29.      
  30.     printf("sz = %s\n", sz);
  31.     for(int i = 0; i < 13; i++)
  32.     {
  33.        printf("sz[%2d] = %c\n", i, sz[i]);  
  34.     }
  35. }
  36.    
  37.    
  38.    
  39.    
  40.    
  41.    
  42.    
  43. /*
  44. #include  <stdio.h>
  45.  
  46.                
  47. ///////////////////////////////////////////////////////
  48. int main()                                           //
  49. {
  50.     char  sz[99] = "SONY";
  51.      
  52.     for(int i = 0; i < 5; i++)
  53.     {
  54.        printf("sz[0] = %d\n", sz[i]);  
  55.     }
  56. }
  57.    
  58.     */
  59.    
  60.    
  61. /*
  62. #include  <stdio.h>
  63.  
  64.                
  65. ///////////////////////////////////////////////////////
  66. int main()                                           //
  67. {
  68.     char  sz[99] = "SONY";
  69.      
  70.     printf("sz    = %s\n", sz   );
  71.     printf("sz[0] = %c\n", sz[0]);    
  72. }
  73. */
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81. /*
  82. #include  <stdio.h>
  83.  
  84.   char  c = 65;                 //'A';
  85. __int8 n1 = 66;
  86. ///////////////////////////////////////////////////////
  87. int main()                                           //
  88. {
  89.      
  90.     printf("n1 = %c", n1);  
  91. }
  92.  
  93. */
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101. /*
  102. #include  <stdio.h>
  103.  
  104. ///////////////////////////////////////////////////////
  105. int main()                                           //
  106. {
  107.  
  108.     int n1 =  42,   // jhkjhjkh
  109.         n2 = 112;   // jhjkhkjh iuhuih
  110.    
  111.     printf("sizeof = %d", sizeof(char));
  112. }
  113.  
  114. */
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123. /*
  124. #include  <stdio.h>
  125.  
  126. ///////////////////////////////////////////////////////
  127. int main()                                           //
  128. {
  129.  
  130.     int n1 = 42;
  131.    
  132.     float f2 = 88.44;
  133.    
  134.     n1 = n1 + f2;
  135.    
  136.     printf("%d, %d", n1, 22);  
  137.  
  138. }
  139.  
  140. */
  141.  
  142.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement