I have a traditional C lib and a function (setsockopts) wants an argument by pointer. In C++11 (gcc 4.8), can I pass this argument without initializing a named
setsockopts
You can bind a const reference to a temporary:
const
cout << deref(addressof(42)) << endl;