write a porgram in c++ that reads an integer and print the
biggest digit in the number
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by storage classes?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What are pointer-to-members? Explain.
What is a class definition?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is a modifier in c++?
What is function declaration in c++ with example?
How is memory managed in C++?
Why can you not make a constructor as const?
What is the difference between while and do while loop?
program to print this triangle * * * * * *
What are c++ redistributables?