When was c language developed?
No Answer is Posted For this Question
Be the First to Post Answer
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What are the advantages of external class?
What is stack in c?
What is the best style for code layout in c?
Explain the difference between fopen() and freopen().
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
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; }
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode