Explain 'bit masking'?


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

Post New Answer

More C Interview Questions

code for copying two strings with out strcpy() function.

6 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


What is realloc in c?

0 Answers  


1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)

12 Answers   Eskom, TCS,


related to rdbms query .

2 Answers  






What is scope of variable in c?

0 Answers  


Does c have an equivalent to pascals with statement?

0 Answers  


how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"

4 Answers   Wipro,


what is an inline fuction??

2 Answers  


Why is c known as a mother language?

0 Answers  


What are compound statements?

0 Answers  


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Categories