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,560 questions

51,419 answers

573 users

How to create array of structs in C++

1 Answer

0 votes
#include <iostream> 
  
struct Book { 
    std::string name;
    float price; 
}; 
    
int main() 
{ 
    Book arr[] = { { "c++", 37 }, 
                   { "java", 32 }, 
                   { "c", 41 }, 
                   { "python", 35 } }; 
  
    for (const auto &b : arr) {
        std::cout << b.name << " " << b.price << "\n";
    }
} 
  
  
  
/*
run:
  
c++ 37
java 32
c 41
python 35
  
*/

 



answered May 11, 2021 by avibootz
edited Feb 5, 2023 by avibootz

Related questions

3 answers 182 views
182 views asked May 11, 2021 by avibootz
2 answers 137 views
137 views asked Jan 21, 2022 by avibootz
1 answer 120 views
120 views asked May 11, 2021 by avibootz
1 answer 129 views
1 answer 77 views
1 answer 146 views
146 views asked May 11, 2021 by avibootz
...