What is the output of the following code man)
int a[] = {11,22, 33);
printf("%d", *a+1);
}
Answers
Answered by
1
Answer:
12
Explanation:
so...
*a means the first element of array
*a+1= 11+1= 12
hence output is 12
Similar questions
Math,
2 months ago
Physics,
2 months ago
Computer Science,
2 months ago
English,
10 months ago
Sociology,
10 months ago