+ 2
c++ the auto keyword
i just know that auto specified the type and he has more byte than int type
1 Answer
+ 6
"auto" doesn't specify the type. It tells the compiler to derive the variable's type from the specified literal. auto i{0} will be an integer because it is initialized with an integer literal (0). I never heard that auto "has more byte than int type" and I doubt that that is true.