+3 votes
in C Plus Plus by
Observer the given C++ program carefully and choose the correct output from the given options:

Program

#include <iostream>  

#include <string>  

using namespace std;  

int main()  

{  

    cout<<is_array<int>::value; // case A  

    cout<<is_array<char[10]>::value; // case B  

    cout<<is_array<string>::value;  // case c  

    return 0;  

}  

a) 110

b) 001

c) 010

d) None of the above

1 Answer

0 votes
by

c) 010

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
+1 vote
asked Jan 20, 2021 in C Plus Plus by SakshiSharma
...