You run a shell on unix system. How would you tell which shell are you running?
What is format for defining a structure?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
How can I learn dev c++ programming?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
What do you understand by a pure virtual member function?
What is the difference between set and map in c++?
Is c++ platform dependent?
What are guid?
What is #include iostream in c++?
what is the basic concept of c++(object oriented programing)