What is the use of function overloading in C?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Do you know the use of fflush() function?
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is substring in c?
What is default value of global variable in c?
Difference between strcpy() and memcpy() function?
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.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
Can a pointer point to null?
Differentiate between the expression “++a” and “a++”?
what is function pointer?
what is void pointer?