size of int *

#include <iostream>

int main() {
    std::cout << "Size of int: " << sizeof(int) << std::endl;
    return 0;
}