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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 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 90 views
1 answer 94 views
1 answer 65 views
65 views asked May 16, 2018 by avibootz
1 answer 74 views
1 answer 64 views
...