What are the uses of null pointers?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS HEADER?
Who invented bcpl language?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What does %f mean c?
Prove or disprove P!=NP.
What is c definition?
write a program to print sum of each row of a 2D array.
diff .between strcture and union
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
What are qualifiers?
Did c have any year 2000 problems?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }