STL (140)
OOPS (873)
C++ General (2409) Tell us about yourself.
ABB, Amazon, Fidelity, Flextronics, Franklin Templeton, HCL, Hexaware, IBM, Impetus, Infosys, Reliance, Rofous, Silgate, Sutherland, TCS, Thomson Reuters, Virtusa, Wipro,
47 126686Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
IBM,
13 221521)#include
When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?
1 4169Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
4 11009What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
2 10146Assume 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?"
2 6750Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }
1 5398
What is token c++?
What type of loop is a for loop?
How do I make turbo c++ full screen?
Can we run c program in turbo c++?
What is a float in c++?
What is the best book for c++ beginners?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
List the types of polymorphism in c++?
what are the iterator and generic algorithms.
What is a map in c++?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
What is the difference between an ARRAY and a LIST in C++?
What is encapsulation process?
To what does “event-driven” refer?
Define stl.