1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include <iostream> #include "sales_item.hpp" /* * * 2.20 * * */ int main () { int i = 42; int *p = &i; *p = *p * *p; // Same as i = i * i; std::cout << "i: " << i << "\n*p: " << *p << std::endl; return 0; }