Void main ( )
{
int n [25] ;
n [0] = 10 ;
n [24] = 20;
printf(“\ n% d% d”, *n, *(n + 24) + *(n + 0));
what is the output of the above program?1
10 20
2
10 30
3
garbage value
4
compilation error
Void main ( )
{
int n [25] ;
n [0] = 10 ;
n [24] = 20;
printf(“\ n% d% d”, *n, *(n + 24) + *(n + 0));
what is the output of the above program?