Advertisement
dllbridge

Untitled

Nov 18th, 2024
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.92 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include  <stdio.h>
  5. #include <stdlib.h>
  6. #include   <time.h>
  7.  
  8.  
  9.  
  10.  
  11. void monitor(int* p);
  12.  
  13.  
  14.  
  15. /////////////////////////////////////////////////////////////////
  16. int main()                                                     //
  17. {
  18.    
  19.     srand(time(0));
  20.    
  21.     int      v = 7,
  22.       nCounter = 0;
  23.     int  array[10];
  24.    
  25.    
  26.     for(int i = 0; i < 10; i++)
  27.     {
  28.         array[i] = rand()%200;    
  29.     }
  30.    
  31.     monitor(array);
  32.      
  33.     printf("The last element in the array = %d  ?\n", v);
  34.      
  35.    
  36.     for(int i = 0; i < 10; i++)
  37.     {
  38.         if (array[i]<v)
  39.         {
  40.              nCounter ++;
  41.          
  42.     }
  43.        
  44.     }
  45. }
  46.  
  47.  
  48. /////////////////////////////////////////////////////////////////  
  49. void monitor(int* p)                                           //
  50. {
  51.      for (int i = 0; i < 10; i++)
  52.      {
  53.         printf("%d ,", p[i]);
  54.      }  printf("\n");
  55. }
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement