Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to print array in C++

2 Answers

0 votes
#include <iostream>
 
void print_array(int arr[], int size) { 
    for (int i = 0; i < size; i++) { 
        std::cout << arr[i] << "  "; 
    } 
    std::cout << "\n"; 
} 
   
int main(void) 
{ 
    int arr[] = { 6, 8, 1, 0, 3, 8, 9 }; 
 
    print_array(arr, sizeof(arr) / sizeof(arr[0])); 
} 

  
  
  
/*
run:
  
6  8  1  0  3  8  9    
 
*/

 



answered Feb 19, 2021 by avibootz
edited Apr 19, 2024 by avibootz
0 votes
#include <iostream>
 
int main(void) {
    int arr[] = {3, 5, 9, 1, 7};   
    int len = sizeof(arr)/sizeof(arr[0]);
     
    for (int i = 0; i < len; i++) { 
        std::cout << arr[i] << " ";  
    }
}
  
  
  
  
/*
run:
  
3 5 9 1 7 
  
*/

 



answered Apr 19, 2024 by avibootz
...