What is the use of ‘using’ declaration?
Answer / beena
A using declaration makes it possible to use a name from a namespace without the scope operator.
Is This Answer Correct ? | 0 Yes | 0 No |
Can you use the function fprintf() to display the output on the screen?
What are the differences between new and malloc?
What C++ libraries are you proficient with?
Define a pointer to a data member of the type pointer to pointer?
What is ios in c++?
What is encapsulation in c++ with example?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
what is pulse code modulation?
What is the difference between a class and a structure in C++?
Is the declaration of a class its interface or its implementation?
You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.
Which is not a valid keyword a) public b) protected c) guarded