The program below stores 80 bool values into a char arr[10]. Complete setBool and getBool. In both functions, index is the index of the bool values, from 0 to 79. getBool returns 1 if the bool value at index is true otherwise 0. You will probably need most bitwise operations including shifting. void setBool ( char * arr , int index , int boolValue ) { } int getBool ( char * arr , int index ) { } int main ( void ) { char arr [10]; memset ( arr , 0 , 10); setBool ( arr , 78 , 1); setBool ( arr , 40 , 0); int b78 = getBool ( arr , 78); // b78 is 1 int b40 = getBool ( arr , 40); // b40 is 0 return 0;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

The program below stores 80 bool values into a char arr[10]. Complete
setBool and getBool. In both functions, index is the index of the bool
values, from 0 to 79. getBool returns 1 if the bool value at index is true
otherwise 0.


You will probably need most bitwise operations including shifting.


void setBool ( char * arr , int index , int boolValue ) {
}
int getBool ( char * arr , int index ) {
}
int main ( void ) {
char arr [10];
memset ( arr , 0 , 10);
setBool ( arr , 78 , 1);
setBool ( arr , 40 , 0);
int b78 = getBool ( arr , 78); // b78 is 1
int b40 = getBool ( arr , 40); // b40 is 0
return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr