Are there interfaces in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is static function? Explain with an example
What are the benefits of operator overloading?
What is a multimap c++?
To which numbering system can the binary number 1101100100111100 be easily converted to?
What does I ++ mean in c++?
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
What is purpose of abstract class?
Implement a 2 dimensional array by one dimentional array
What is the hardest coding language to learn?
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
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.
wap to accept 10 numbers & display the number of odd and even numbers??