Are there interfaces in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is static function? Explain with an example

0 Answers  


What are the benefits of operator overloading?

0 Answers  


What is a multimap c++?

0 Answers  


To which numbering system can the binary number 1101100100111100 be easily converted to?

0 Answers  


What does I ++ mean in c++?

0 Answers  






1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v

5 Answers   Quark,


What is purpose of abstract class?

0 Answers  


Implement a 2 dimensional array by one dimentional array

1 Answers   CTS,


What is the hardest coding language to learn?

0 Answers  


What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number

0 Answers  


write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.

0 Answers  


wap to accept 10 numbers & display the number of odd and even numbers??

1 Answers  


Categories