assignment-p-09.c¶
Problem Statement
Write a C program that includes a user-defined function named setBit with the signature int setBit(int num, int position);. The function should set the bit at the specified position (0-indexed) to 1 and return the modified number.
Metadata¶
| Property | Detail |
|---|---|
| Author | Amit Dutta (amitdutta4255@gmail.com) |
| License | MIT |
Actions¶
💡 You can print or save this file by opening Raw and using your browser.
Source Code¶
#include <stdio.h>
int setBit(int, int);
int main()
{
int num, position;
printf("Enter the number: ");
scanf("%d", &num);
printf("Enter the postion where you want to set the bit (0-indexed): ");
scanf("%d", &position);
printf("\nModified number= %d", setBit(num, position));
return 0;
}
int setBit(int num, int position)
{
int mask = 1 << position;
return num | mask;
}