1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int num[10] = {13, 16, 19, 11, 18, 13, 22, 26};
cout << num[1] + 2< return 0;
}

A. 13, 16, 19, 11, 18, 13, 22, 26
B. 18, 13, 22, 26
C. 13, 16, 19, 11, 18
D. 19, 11, 18, 13
E. 18 22 13
Answer» F.


Discussion

No Comment Found

Related MCQs