CopyBits(x,p,n,y)
copy n LSBs from y to x starting LSB at 'p'th position.
Answer Posted / mohammed sardar
Sorry above answer ; I did a mistake
t=0;
for(i=n; i>0; i--)
{
t|=(1<<p);
p++;
}
x=x&~t
t=t&y;
x=x|t;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how to write a c program to print list of fruits in alpabetical order?
What are the disadvantages of external storage class?
What is the basic structure of c?
Explain what is the difference between a free-standing and a hosted environment?
how could explain about job profile
If you know then define #pragma?
Is it better to bitshift a value than to multiply by 2?
What is the best way of making my program efficient?
What are the different types of endless loops?
What is the difference between typedef and #define?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is indirection? How many levels of pointers can you have?
Describe newline escape sequence with a sample program?
What is the value of h?