What is setfill c++?
No Answer is Posted For this Question
Be the First to Post Answer
write program for palindrome
81 Answers Amazon, Aricent, CSC, GE, HCL, Infosys, Syntel, Temenos, Wipro,
What is private, public and protected inheritance?
What is new in c++?
What is a "RTTI"?
what is a reference variable in C++?
How can a called function determine the number of arguments that have been passed to it?
Can a class be static in c++?
What is RTRT tool?can it be used for automation?can it work on packet PC?
What are references in c++? What is a local reference?
Is oops and c++ same?
Write a program that will count the number of digits in an input integer up to value MAX_VALUE (2147483647). Thus, for an input of 5837 the output should be 4 digits Make sure that your program works for the numbers 0, 1, and 10. For the number 0, the output should be 1 digit
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;