3 .
Which of the following correctly declares an array ?
A.int array[10];
B. int array;
C. array{10};
D.array array[10];
View AnswerAns: int array[10];
4 .
Which of the following keyword is used to declare the header file ?
A.include
B. exclude
C. string
D.namespace
View AnswerAns: include
5 .
What is the output of this program ?
#include <`iostream`> (Please neglect `` this signs)
using namespace std;
int main()
{
int i, j;
j = 10;
i = (j++, j + 100, 999 + j);
cout << i;
return 0;
}