Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Which of the Standard C++ casts can be used to perform a
?safe? downcast:
a) reinterpret_cast
b) dynamic_cast
c) static_cast
d) const_cast

Answers were Sorted based on User's Feedback



Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) ..

Answer / guest

dynamic_cast

Is This Answer Correct ?    5 Yes 0 No

Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) ..

Answer / santosh mundhe

reinterpret_cast: Reinterpret_cast is only way to cast
between pointers and value type.

dynamic_cast:Dynamic_cast is used with pointers and
reference.It's purpose is - it provid valid object
conversion of requested class.

static_cast:Static_cast provides conversion from pointer to
related class not only from derived to base class.

const_cast:It manipulets constness of an object while
passing a const object to a function.

:-dynamic_cast performs a special checking during runtime.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C++ General Interview Questions

Explain the properties and principles of oop.

0 Answers  


Can you please explain the difference between static and dynamic binding of functions?

0 Answers  


Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)

0 Answers  


Will the inline function be compiled as the inline function always? Justify.

1 Answers  


What is the insertion operator and what does it do?

0 Answers  


Implement stack operations with pointers with appropriate exception checks.

0 Answers   Huawei,


Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].

1 Answers  


What is main function in c++ with example?

0 Answers  


What is a unnitialised pointer?

0 Answers  


What is the full form of stl in c++?

0 Answers  


What is c++ & why it is used?

0 Answers  


What do you mean by function and operator overloading in c++?

0 Answers  


Categories