What are iterators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are raw sockets, where they are efficient?
founder of c++
7 Answers Microtek, TCS, TeleCommand,
Write a c program for binary addition of two 8 bit numbers.
What is the best c++ compiler?
What is the difference between public and private data members?
Explain the use of vtable.
When should I use unitbuf flag?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
Why do C++ compilers need name mangling?
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 the difference between #import and #include in c++?