adplus-dvertising
frame-decoration

Question

What is the output of this program?
    #include <iostream>
    #include <vector>
    #include <iterator>
    #include <stddef.h>
    using namespace std;
    template<class myType>
    class SimpleContainer
    {
        public:
        SimpleContainer(size_t xDim, size_t yDim, myType const& defaultValue)
        : objectData(xDim * yDim, defaultValue)
        , xSize(xDim)
        , ySize(yDim)
        {
        }
        myType& operator()(size_t x, size_t y)
        {
            return objectData[y * xSize + x];
        }
        myType const& operator()(size_t x, size_t y) const 
        {
            return objectData[y * xSize + x];
        }
        int getSize()
        {
            return objectData.size();
        }
        void inputEntireVector(vector<myType> inputVector)
        {
            objectData.swap(inputVector);
        }
        void printContainer(ostream& stream)
        {
            copy(objectData.begin(), objectData.end(),
            ostream_iterator<myType>(stream, ""/*No Space*/));
        }
        private:
        vector<myType> objectData;
        size_t  xSize;
        size_t  ySize;
    };
    template<class myType>
    inline ostream& operator<<(ostream& stream, SimpleContainer<myType>& object)
    {
        object.printContainer(stream);
        return stream;
    }
    void sampleContainerInterfacing();
    int main()
    {
        sampleContainerInterfacing();
        return 0;
    }
    void sampleContainerInterfacing()
    {
        static int const ConsoleWidth  = 80;
        static int const ConsoleHeight = 25;
        size_t width  = ConsoleWidth;
        size_t height = ConsoleHeight;
        SimpleContainer<int> mySimpleContainer(width, height, 0);
        cout << mySimpleContainer.getSize() << endl;
        mySimpleContainer(0, 0) = 5;
    }

a.

2000

b.

No Space

c.

Error

d.

Depends on the compiler

Answer: (d).Depends on the compiler

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?