Home / CSE / Object Oriented Programming Using C++ :: Discussion

Discussion :: Object Oriented Programming Using C++

  1. Which of the following type casts will convert an Integer variable named amount to a Double type?

  2. A.
    (double) amount
    B.
    (int to double) amount
    C.
    int to double(amount)
    D.
    int (amount) to double

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment