What is meant by entry controlled loop?
No Answer is Posted For this Question
Be the First to Post Answer
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What are the characteristics of friend functions?
Name the implicit member functions of a class.
How can we access protected and private members of a class?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
write program for palindrome
81 Answers Amazon, Aricent, CSC, GE, HCL, Infosys, Syntel, Temenos, Wipro,
What is void pointer in c++ with example?
How do you clear a map in c++?
What are the steps in the development cycle?
Is c++ a software?
What are the rules for naming an identifier?
What is c++ namespace?