Question #50: What is the output of the program? 65% on 903 times asked
#include <iostream> int main(int argc, char** argv) { // assume address of x is 0x822222222 int x = 3; int*& rpx = &x; std::cout << rpx << std::endl; return 0; }