adplus-dvertising
frame-decoration

Question

If a function is to be made const, which is the correct syntax?

a.

const functionName(parameters);

b.

const returnType functionName(parameters);

c.

const functionName(returnType)(Parameters);

d.

const (functionName(parameters));

Answer: (b).const returnType functionName(parameters);

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. If a function is to be made const, which is the correct syntax?

Similar Questions

Discover Related MCQs

Q. Functions which differ in const-ness are considered ______________________

Q. If const version of a function when overloading is used, the function ___________________

Q. Which among the following is recommended for const functions?

Q. Use of const member function in a program _________________________

Q. Which is private member functions access scope?

Q. Which among the following is true?

Q. Which member can never be accessed by inherited classes?

Q. Which syntax among the following shows that a member is private in a class?

Q. If private member functions are to be declared in C++ then _____________

Q. In java, which rule must be followed?

Q. How many private member functions are allowed in a class ?

Q. How to access a private member function of a class?

Q. Private member functions ____________

Q. Which function among the following can’t be accessed outside the class in java in same package?

Q. If private members are to be called outside the class, which is a good alternative?

Q. A private function of a derived class can be accessed by the parent class.

Q. Which error will be produced if private members are accessed?

Q. Can main() function be made private?

Q. If a function in java is declared private then it __________________

Q. What are public member functions?