What does a derived class inherit from a base class
a) Only the Public members of the base class
b) Only the Protected members of the base class
c) Both the Public and the Protected members of the base class
d) .c file
No Answer is Posted For this Question
Be the First to Post Answer
Why void is used in c?
What is extern keyword in c?
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
Why c is known as a mother language?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
What is page thrashing?
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is the 'named constructor idiom'?
What is || operator and how does it function in a program?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Explain function pointer with exapmles.