{}
run-icon
main.cpp
#include <iostream> using namespace std; int main() { int x = 5; int *p = &x; *p = 10; cout << x; return 0; }
Output