Explain what is the benefit of using enum to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the benefit of using const for declaring constants?
the question is that what you have been doing all these periods (one year gap)
What is pointer & why it is used?
what about "char *(*(*a[])())();"
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
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; }
find the size of structure without using the size of function
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
what is the role you expect in software industry?
What is the explanation for prototype function in c?
Explain 'bit masking'?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }