Why do we use namespace feature?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
an algorithem for the implementation of circular doubly linked list
how to display 2-D array elements in spiral
What is the return type of sizeof?
can we declare a function in side the structure?
What is null pointer in c?
Explain what does a function declared as pascal do differently?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
How can I make sure that my program is the only one accessing a file?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
How to declare a variable?
Explain 'far' and 'near' pointers in c.