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 31725Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
6 12396Give 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 16080When 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 23000Write 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 9258
What is a memory leak c++?
What does int * mean in c++?
Where Malloc(), Calloc(), and realloc() does get memory?
What are the differences between java and c++?
Mention the purpose of istream class?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
How to declaring variables in c++?
What is istream c++?
Is dev c++ free?
What is destructor give example?
What are the 4 types of library?
Discuss the possibilities related to the termination of a program before entering the mainq method?
what do you mean by volatile variable?
What is c++ iterator?
What is a constructor in c++ with example?