Multiple choice int num[ ] = {24,32,12,44,56,17}, *(num +4) refers to 56 44 17 none of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation The expression *(num + 4) is equivalent to num[4]. In the array {24, 32, 12, 44, 56, 17}, the element at index 4 is 56.