Multiple choice technology programming languages Find the output of this program. main() { int a[10]; printf("%d",*a+1-*a+3) ; } Compiler error 3 -2 4 Reveal answer Fill a bubble to check yourself D Correct answer Explanation In the expression *a + 1 - *a + 3, the pointer dereference *a cancels out with -*a, leaving 1 + 3, which evaluates to 4.