How is a pointer variable declared?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to store and print name,address,roll.no of a student using structures?
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; }
By using C language input a date into it and if it is right?
What is the use of volatile?
What is fflush() function?
What are the rules for identifiers in c?
What is a structural principle?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
What is wrong with this code?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
Why c is called object oriented language?
What is Dynamic Initialization.