Computer Science, asked by aayushigupta680, 7 months ago

#include <iostream>
using namespace std:
int main
32999000 29
293 60 20
int chArr[] = { 91, 93, 95};
cout << *chArr + 1;
1432931160 26
return 0.
}
31160 20
Type your answer below:
432931160 26
13203706020
Enter your answer ONLY as a NUMERAL in the box.​

Answers

Answered by mithileshzade26
0

Answer:

answer is 92

Explanation:

Answered by pruthaasl
0

Answer:

The output of the given code will be 92.

Explanation:

  • The given code starts with the declaration of an array.
  • The array chArr is of integer data type. It is initialized to store three elements namely 91, 93, and 95.
  • The next line of the code consists of a cout statement.
  • The expression *chArr + 1 points to the first element of the array which is 91.
  • 1 is then added to this element, i.e., 91. So, the value becomes 92.
  • This value, 92 is then printed as the output.

Therefore, the result of the given code is 92.

#SPJ3

Similar questions