Computer Science, asked by ishwarchin, 4 months ago

What is the output of the following code man)
int a[] = {11,22, 33);
printf("%d", *a+1);
}

Answers

Answered by madhavivinod10
1

Answer:

12

Explanation:

so...

*a means the first element of array

*a+1= 11+1= 12

hence output is 12

Similar questions