code::block uncomment

#include <iostream>

using namespace std;

int main() {
    // Uncomment the following code

    // Step 1: Declare an integer variable named 'num' and initialize it with the value 10
    // int num = 10;

    // Step 2: Declare a pointer to an integer named 'ptr' and initialize it with the address of 'num'
    // int* ptr = &num;

    // Step 3: Print the value of 'num' using cout
    // cout << "Value of num: " << num << endl;

    // Step 4: Print the address of 'num' using cout
    // cout << "Address of num: " << &num << endl;

    // Step 5: Print the value pointed to by 'ptr' using cout
    // cout << "Value pointed to by ptr: " << *ptr << endl;

    // Step 6: Uncommenting the code above will output information about the variable 'num' and the pointer 'ptr'

    return 0;
}