What is setw manipulator in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Do vectors start at 0 c++?
Why c++ is better than c language?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
What are formatting flags in ios class?
How can you link a c++ program to c functions?
How are pointers type-cast?
What is a parameterized type?
Differentiate between a constructor and a method in C++.
Explain how we implement exception handling in c++?
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
Discuss the possibilities related to the termination of a program before entering the mainq method?
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;