What is #include cstdlib 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 the purpose of ios::basefield in the following statement?

0 Answers  


What are the basics concepts of OOPS?

1 Answers  


Explain function overloading and operator overloading.

0 Answers  


Can we make copy constructor private in c++?

0 Answers  


What is private inheritance?

0 Answers  






What are references in c++? What is a local reference?

0 Answers  


Explain virtual functions in C++.

3 Answers  


Differentiate between a template class and class template in c++?

0 Answers  


Can we change the basic meaning of an operator in c++?

0 Answers  


What is the use of namespace std in C++?

0 Answers   Hexaware,


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;

1 Answers   Quark,


What does it mean to declare a member variable as static?

0 Answers  


Categories