What are 'near' and 'far' pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in c to replace any vowel in a string with z?
Explain goto?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Can we change the value of constant variable in c?
Hi can anyone tell what is a start up code?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is a stream in c programming?
What is getche() function?
What are the preprocessor categories?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
Can include files be nested?
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; }