Answers for "cpp reference auto"

C++
0

auto i cpp

auto n=1;
// this will make the type int, and you can't change trough the program;
cout << n;
// OR
auto n="how you doin'";
cout << n;
Posted by: Guest on October-05-2021

Browse Popular Code Answers by Language