What does 7/9*9 equal ?
a) 1
b) 0.08642
c) 0
No Answer is Posted For this Question
Be the First to Post Answer
What is istream and ostream in c++?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What are the benefits of oop in c++?
When copy constructor can be used?
How many types of comments are there in c++?
What are register variables?
What is the meaning of string in c++?
what is the use of Namespace in c++.
How would you use qsort() function to sort an array of structures?
What is constructor and destructor in c++?
Are there any special rules about inlining?
What is the difference between the parameter to a template and the parameter to a function?