Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need help with this C program please! For this task, you will complete bit_ops.c by implementing the following three bit manipulation batch functions. You will

Need help with this C program please!

For this task, you will complete bit_ops.c by implementing the following three bit manipulation batch functions. You will want to use bitwise operations such as and (&), or (|), xor (^), not (~), left shifts (<<), and right shifts (>>).

#include #include

// Note, the bits are counted from right to left. // Return the bit states of x within range of [start, end], in which both are inclusive. // Assume 0 <= start & end <= 31 unsigned * get_bits(unsigned x, unsigned start, unsigned end) {

return NULL; // YOUR CODE HERE // Returning NULL is a placeholder // get_bits dynamically allocates an array a and set a[i] = 1 when (i+start)-th bit // of x is 1, otherwise siet a[i] = 0; // At last, get_bits returns the address of the array. }

// Set the bits of x within range of [start, end], in which both are inclusive // Assume 0 <= start & end <= 31 void set_bits(unsigned * x, unsigned start, unsigned end, unsigned *v) { // YOUR CODE HERE // No return value // v points to an array of at least (end-start+1) unsigned integers. // if v[i] == 0, then set (i+start)-th bit of x zero, otherwise, set (i+start)-th bit of x one. }

// Flip the bits of x within range [start, end], in which both are inclusive. // Assume 0 <= start & end <= 31 void flip_bits(unsigned * x, unsigned start, unsigned end) { // YOUR CODE HERE }

/* * YOU CAN IGNORE THE REST OF THIS FILE */

/* * Tests that two arrays of size are equal. Equal meaning that all the * elements in the arrays are equal. */ int array_equals(unsigned *arr1, unsigned *arr2, unsigned size) {

int i; for (i = 0; i < size; i++) { if (arr1[i] != arr2[i]) { return 0; } }

return 1; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions