When did c++ add stl?
How Find, Replace and Go To commands ca be used to substitute one character string for another? Explain with the heIp of an example.
how to get the sum of two integers?
what is c++
write a c++ to define a class box with length,breadth and height as data member and input value(),printvalue() and volume() as member functions.
write a program to search and display the position of an element in a single-dimentional array using function.
What is the underlying datastructure of map?
What is the use of stl?
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"
what is strcture i++ i ++i answer to this i=5 what is the out put
Waht is inheritance
Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
Give two integer arrays A & B.A has n elements and B has ' n-1 ' elements . A has all the elements that are there in B. But B has one missing element. Write a function that takes arrays , A & B as imnput and finds the missing element in most optised manner .