Explain 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
If input is 123 then how to print 100 and 20 and 3 seperately?
Are negative numbers true in c?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
What is extern keyword in c?
How do you redirect a standard stream?
Can static variables be declared in a header file?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
How do you do dynamic memory allocation in C applications?
What is the difference between constant pointer and pointer to a constant. Give examples.
What are volatile variables in c?
print the table 5 in loops