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
Explain the use of vtable.
Define friend function.
What are the popular tools used to detect memory leaks in c++
What is a storage class?
What is endl?
What are the various compound assignment operators in c++?
What is late binding c++?
What is purpose of abstract class?
How would you implement a substr() function that extracts a sub string from a given string?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is an explicit constructor?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1