What does the message "automatic aggregate intialization is an ansi feature" mean?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
what's the return value of malloc()
what is default constructor?
What are the two types of structure?
What is a void * in c?
What are the advantages of using Unions?
What is a scope resolution operator in c?
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
Explain the difference between ++u and u++?
List out few of the applications that make use of Multilinked Structures?
What is the difference between array and linked list in c?