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
What are the stages in the development cycle?
What are arrays c++?
What is std :: flush?
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
pls help.. paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1.. create a program that will count all the paper bills in the number being input.. example: enter a number: 3886 there is/are: 3 ->1000 1 ->500 3 ->100 1 ->50 1 ->20 1 ->10 1 ->5 1 ->1 example2: enter a number: 728 there is/are: 0 ->1000 1 ->500 2 ->100 0 ->50 1 ->20 0 ->10 1 ->5 3 ->1
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
is throwing exception from a constructor not a good practice ?
Can we declare a base-class destructor as virtual?
What is code reusability in c++?
What is Virtual Inheritance?
What is the difference between reference type and pointers.
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.