Address of Array//Write the output of each cout statement.//Assume the size of ints to be 4 bytes.//Assume the size of pointers to ints to be 8 bytes.int main() {int a[3][3]={{1,2,3},{4,5,6},{7,8,9}};cout < sizeof(a)="">< endl:="" 1:="">cout < sizeof(a+0)="">< endl:="" 2:="">cout < sizeof(*(a+0))="">< endl:="" 3:="">cout < sizeof(**a)="">< endl;="" 4:="">cout < sizeof(&a)="">< endl;="" 5:="">Assume the address of "a" is 0x7ffee2fef9e0cout < a="" +="" 1="">< endl;="" 6:="">cout < *a="" +="" 1="">< endl;="" 7:="">cout < **a="" +="" 1="">< endl;="" 8:="">cout < &a="">< endl;="" 9:="">cout < &a="" +="" 1="">< endl;="" 10:="">return 0:}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here