#include #include "sales_item.hpp" /* * * testing with auto * * */ int main () { double ff = 3.14; auto i = 0, *p = &i; auto i2 = 0.0, i3 = ff; std::cout << i << " " << *p << " " << i2 << " " << i3 << std::endl; const int gg = 66; const auto pgg = ≫ // if we want toplevel const then we have to say it before auto std::cout << gg << "