Why we use #include iostream in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is exception handling? Does c++ support exception handling?
Can char be a number c++?
Can a program run without main function?
Can a program run without main in c++?
Brief explaination about #include<iostream.h>, cin and cout
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;
How can I improve my c++ skills?
What is the difference between stack and heap memory?
Can user-defined object be declared as static data member of another class?
Is c++ free?
What is meant by iomanip in c++?
What's the order in which the local objects are destructed?