How can I list all of the predefined identifiers?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between function overloading and operator overloading?
What is the usage of the pointer in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What is the argument of a function in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
What is the difference between declaring a variable and defining a variable?
what is the main use of c where it can use the c
How will you divide two numbers in a MACRO?
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; }