What header file is needed for exit();
a) stdlib.h
b) conio.h
c) dos.h
No Answer is Posted For this Question
Be the First to Post Answer
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
What are C++ inline functions?
Adobe Interview & Adobe Placement Paper
What are access specifiers in C++?
What is the extraction operator and what does it do?
If you don’t declare a return value, what type of return value is assumed?
write a program in c++ to implement stack using functions in header file stack.h
What is the difference between set and map in c++?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What are the manipulators in c++?
what is the emaning of '#include" "'?