Answer
In 1994 Microsoft published a patent on implementing Virtual Function tables in OOP Programming Languages:
"A virtual function table for a c ...
Search results for arrays, c
Describe C++ object model
Posted by CMaster (http://www.open-std.org)
Answer
Based on ISO Standard for C++ Programming Language, the constructs in a C++ program create, destroy, refer to, access, and manipulate objects. ...
What are jQuery templates?
Posted by CMaster
The idea behind jQuery template is to render hidden HTML island on the client and then use that as a template for client side manupulations and render ...
C++ find greatest common divisor
Posted by jane
The greatest common divisor is the largest positive integer that divides the numbers without a remainder.
Write a function which would find gcd. ...
Merging Arrays Interview Question
Posted by aleksin
"Suppose we have two sorted arrays A[] of m elements and B[] of n elements. Write a function merge which would merge this two arrays into new sorted a ...
Company where asked this question: Amazon
Interviewed for position: Software Developers, Testers
Company where asked this question: Amazon
Interviewed for position: Software Developers, Testers
How do you declare arrays?
Posted by Devin
The following syntax is used to define the class and the initial expression of an array. Array size need not be defined in TSL. b. class array_name [ ...
Conversion constructor is a constructor with a single argument makes that constructor as conversion ctor and it can be used for type conversion.
for ...
Copy constructors are called in following cases:
a) when a function returns an object of that class by value
b) when the object of that class is pass ...
