process by which one bit patten in to another by bit wise
operation is?
(a) masking,
(b) pruning,
(c) biting,
(d) chopping,


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????

3 Answers  


WHAT IS PRE POSSESSORS?

6 Answers   TATA,


1. main() { printf("%d",printf("HelloSoft")); } Output?

3 Answers   HCL,


Can you assign a different address to an array tag?

0 Answers  


Distinguish between actual and formal arguments.

0 Answers  






Explain logical errors? Compare with syntax errors.

0 Answers  


print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5

3 Answers   Winit,


Write a program to swap two numbers without using third variable?

0 Answers  


main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


Which is better malloc or calloc?

0 Answers  


The file stdio.h, what does it contain?

0 Answers  


What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā€œ%d\nā€,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none

2 Answers  


Categories