#include #include using namespace std; int main() { int i {10}; cout << "The value of i is " << i << "\n"; cout << "The address of i is " << &i << "\n"; cout << "The number of bytes in i is " << sizeof i << "\n"; return EXIT_SUCCESS; }