#include <iostream> using namespace std; int getProduct(int* x){ *x *= 2; return *x; } int main(){ int x=5; cout<<getProduct(&x)<<endl; }