In the recent interview I got a question like this :
Given a string value, find out its 127th bit and reset it, do this in C language
Reset means if that particular bit is 0 change to 1 and vice versa
I didn't find out any algorithm for this, but I want to know about how one could solve this in C language.
Edit:
After getting the answer from few, I tried this :
#include<stdio.h>
void main()
{
char *str="anto";
str[15] ^= 0x80;
printf("%s",str);
}
I get the output as : anto. Now I got strike in my head that changing a bit doesn't change the output?
