STL (140)
OOPS (873)
C++ General (2409) Which data structure gives efficient search? A. B-tree B. binary tree C. array D. linked list
21 30934Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
6 12151Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
8 15803When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
13 22491Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 9156
What is difference between pop and oop?
Which function cannot be overloaded c++?
Which is best ide for c++?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
What are the uses of c++ in the real world?
What are the costs and benefits of using exceptions?
What is lazy initialization in c++?
How do you flush std cout?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
Can you use the function fprintf() to display the output on the screen?
What is binary object model?
What is difference between n and endl in c++?
Why main function is special in c++?
What is the basic of c++?
Explain "const" reference arguments in function?