Computer Science, asked by lopa379, 1 year ago

What does an auto keyword do in C++?

Answers

Answered by PiyushSinghRajput1
1

Type Inference in C++ (auto and decltype) ... The auto keyword specifies that the type of the variable that is being declared will be automatically deducted from its initializer. In case of functions, if their return type is auto then that will be evaluated by return type expression at runtime.

Similar questions