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

51,890 answers

573 users

How to initialize and print valarray in C++

6 Answers

0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;

int main()
{
	std::valarray<int> va(5);

	for (int i = 0; i < 5; i++)
		va[i] = i;

	for (int i = 0; i < 5; i++)
		cout << va[i] << " ";

	cout << endl;

	return 0;
}


/*
run:

0 1 2 3 4

*/

 



answered May 15, 2018 by avibootz
0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;

int main()
{
	std::valarray<int> va(5);

	for (int i = 0; i < 5; i++)
		cout << va[i] << " ";

	cout << endl;

	return 0;
}


/*
run:

0 0 0 0 0

*/

 



answered May 15, 2018 by avibootz
0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;

int main()
{
	std::valarray<int> va(13, 5);

	for (int i = 0; i < 5; i++)
		cout << va[i] << " ";

	cout << endl;

	return 0;
}


/*
run:

13 13 13 13 13

*/

 



answered May 15, 2018 by avibootz
0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;

int main()
{
	int arr[] = { 1, 2, 3, 4, 5 };
	std::valarray<int> va(arr, 5);

	for (int i = 0; i < 5; i++)
		cout << va[i] << " ";

	cout << endl;

	return 0;
}


/*
run:

1 2 3 4 5

*/

 



answered May 15, 2018 by avibootz
0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;

int main()
{
	int arr[] = { 421, 22, 993, 34, 55 };
	std::valarray<int> va1(arr, 5);
	std::valarray<int> va2(va1);

	for (int i = 0; i < 5; i++)
		cout << va2[i] << " ";

	cout << endl;

	return 0;
}


/*
run:

421 22 993 34 55

*/

 



answered May 15, 2018 by avibootz
0 votes
#include <iostream>
#include <valarray>

using std::cout;
using std::endl;

int main()
{
	std::valarray<int> va = { 421, 22, 993, 34, 55 };

	for (int i = 0; i < 5; i++)
		cout << va[i] << " ";

	cout << endl;

	return 0;
}


/*
run:

421 22 993 34 55

*/

 



answered May 15, 2018 by avibootz

Related questions

1 answer 152 views
152 views asked Jun 14, 2020 by avibootz
1 answer 174 views
1 answer 113 views
113 views asked May 16, 2018 by avibootz
1 answer 143 views
1 answer 123 views
1 answer 121 views
121 views asked May 15, 2018 by avibootz
...