What will be the output of the following C++ code?int arr[] = {1, 2, 3, 4, 5};cout << arr[2];1234

Question

What will be the output of the following C++ code?int arr[] = {1, 2, 3, 4, 5};cout << arr[2];1234
🧐 Not the exact question you are looking for?Go ask a question

Solution 1

The output of the given C++ code will be '3'.

Here's the step by step explanation:

  1. An integer array 'arr' is declared and initialized with 5 elements {1, 2, 3, 4, 5}.

  2. The 'cout' statement is used to print the element at the 2nd index of the array.

  3. In C++, array indexing starts from 0. Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study prob

Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solv

This problem has been solved

Similar Questions

What will be the output of the following C++ code?int arr[] = {1, 2, 3, 4, 5};cout << arr[2];1234

What is the output of the following code?int arr[5] = {10, 20, 30, 40, 50};int *ptr = arr;cout << *(ptr + 2);10203040

What is the output of the following code?int arr[] = {1, 2, 3, 4, 5};int *p = arr + 3;printf("%d\n", *p);

What is the output of the following code?int arr[] = {1, 2, 3, 4, 5};int *p = arr;printf("%d\n", *(p + 2));

What is the output of the following code?int arr[] = {1, 2, 3, 4, 5};int i;for (i = 0; i < 5; i++)    arr[i] = arr[i] + 2;printf("%d\n", arr[3]);

1/3