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.

40,039 questions

52,004 answers

573 users

How to calculate float array size in C++

3 Answers

0 votes
#include <iostream>

int main(void)
{
	float arr[] = { 3.14, 2.2, 9.7, 1.17, 5.55 };
	int size = (sizeof(arr) / sizeof(*arr));

	std::cout << "Size = " << size << std::endl;

	return(0);
}



/*
run:

Size = 5

*/

 



answered Jun 12, 2017 by avibootz
0 votes
#include <iostream>
#include <array>

int main(void)
{
	std::array<float, 5> arr = { 3.14, 2.2, 9.7, 1.17, 5.55 };

	std::cout << "Size = " << arr.size() << std::endl;
	std::cout << "Size = " << sizeof(arr)/sizeof(arr[0]) << std::endl;

	return(0);
}



/*
run:

Size = 5
Size = 5

*/

 



answered Jun 12, 2017 by avibootz
0 votes
#include <iostream>

int main(void)
{
	float arr[] = { 3.14, 2.2, 9.7, 1.17, 5.55 };
	int size = (sizeof(arr) / sizeof(arr[0]));

	std::cout << "Size = " << size << std::endl;

	return(0);
}



/*
run:

Size = 5

*/

 



answered Jun 12, 2017 by avibootz

Related questions

1 answer 168 views
1 answer 150 views
2 answers 173 views
1 answer 110 views
1 answer 212 views
...