short testarray[4][3] = { {1}, {2, 3}, {4, 5, 6} }; printf(%dn, sizeof( testarray)); Assuming a short is two bytes long, what will be printed by the above code?
Reveal answer
Fill a bubble to check yourself
short testarray[4][3] = { {1}, {2, 3}, {4, 5, 6} }; printf(%dn, sizeof( testarray)); Assuming a short is two bytes long, what will be printed by the above code?