#include <iostream> //int pointer practice int main() { int * f; int d = 4; f = &d; std::cout << *f << std::endl; } //4