can the order be changed in this mcq,
can int comes in place of double, int* in place of string something like that
/////////////////////////
We wish to design a data type that can be used to hold a string, an integer, a double and a pointer to an integer.
Which of the following can be used as an alternative to above required data type.
typedef pair< string, pair< int, pair< double, int * > > > myDataType
