What would be the output of this code?
int32_t nums[3]={2,4,3}; std::cout << ( nums[0] << nums[1] << nums[2] );
243
0
256
The output is the addresses of nums[0], nums[1], and nums[2], in that order, with no spaces.
nums[0]
nums[1]
nums[2]