+1 vote
in C Plus Plus by

Read 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<<rank<int[10]>::value; // Case A  

    cout<<rank<char[10][10]>::value;   // Case B  

    cout<<rank<string[10][10][10]>::value; //Case C  

    return 0;  

}  

a) 121

b) 321

c) 123

d) 010

1 Answer

0 votes
by

c) 123

Related questions

0 votes
asked Sep 18, 2022 in Business Skills Track by sharadyadav1986
+1 vote
asked Jan 20, 2021 in C Plus Plus by SakshiSharma
...