Advertisement
dllbridge

Untitled

Nov 15th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.89 KB | None | 0 0
  1.  
  2.  
  3. #include  <stdio.h>
  4. #include <string.h>
  5.  
  6. int      n =   105;
  7. char sz[4] = "JVC";
  8.  
  9.  
  10.  
  11.  
  12. //////////////////////////////////////////////////////////
  13. int main()                                              //  
  14. {
  15.    
  16.     memcpy(&n, sz, 4);
  17.    
  18.     printf("n = %s\n", &n);
  19.    
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54. /*
  55. #include <stdio.h>
  56.  
  57.  
  58. //////////////////////////////////////////////////////////
  59. int main()                                              //  
  60. {
  61.     int b = 5,
  62.         m = 0,  
  63.       sum = 0,
  64.   nResulr = 0;
  65.      
  66.      
  67.     int array[11] = { 0,1,2,3,4,5,6,7,8,9,10 };
  68.  
  69.     for(int i = 0; i < 11; i++)
  70.     {
  71.            
  72.         if(array[i] > b)
  73.         {
  74.             sum += array[i];
  75.            
  76.             m++;
  77.         }
  78.    
  79.     }
  80.     nResulr = sum / m;
  81.    
  82.     printf("nResulr = %d\n ", nResulr);
  83.  
  84. }
  85.  
  86. */
  87.  
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement