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
Which is the memory area not included in C program? give the reason
The statement, int(*x[]) () what does in indicate?
How does #define work?
What are the 4 types of programming language?
What is a protocol in c?
What are the types of type qualifiers in c?
What does void main () mean?
What was noalias and what ever happened to it?
Explain is it valid to address one element beyond the end of an array?
provide an example of the Group by clause, when would you use this clause
What is difference between && and & in c?
Not all reserved words are written in lowercase. TRUE or FALSE?
How can I change their mode to binary?
what is the basis for selection of arrays or pointers as data structure in a program
What does node * mean?