I need to write in C++ a complete boolean function that will take an integer array and it's maximum size as a parameter and return whether or not that array has any elements with a value of 0.
I'm not even sure where to start.
Thanks in advance.
|
|
Are you talking about something like this? This will iterate through the array and return true if there is a value of 0 anywhere. |
|||
|
|
|
Use
|
|||
|
|
|
How about reading a tutorial on arrays in C++? |
|||
|
|
|
|||||||||
|
|
This sounds an awful lot like a homework problem, so I'll just give you the concepts and let you learn. You need to use a "for" loop, check the value of each item in the array, and return true if you find one, otherwise return false after the loop exits. |
|||||||
|
|
|||
|
|
and to call it you would do something like:
|
|||
|
|