Josif_tepe

Untitled

Aug 15th, 2025
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.        
  5.     int niza[10];
  6.    
  7.     niza[0] = 5;
  8.     niza[1] = 9;
  9.     niza[2] = 8;
  10.     niza[3] = 0;
  11.    
  12.     for(int i = 0; i < 4; i++) {
  13.         printf("%d ", niza[i]);
  14.     }
  15.    
  16.    
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment