How should runtime errors be handled in c++?
What is meant by forward referencing and when should it be used?
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
total amount of milk produced each morning and then calculates and outputs the number of cartons needed for this milk , the cost of producing the milk and the profit from producing this milk.
Why c++ is called oop?
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
Explain mutable storage class specifier.
write a program in c++ to generate imp z y x w v w x y z z y x w x y z z y x y z z y z z
What is a storage class used in c++?
Do you know the use of vtable?
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
What is the difference between mutex and binary semaphore?
Explain the difference between realloc() and free() in c++?