Q:

Write the declaration for a function that returns a reference to an array of ten strings, without using either a trailing return, decltype, or a type alias

0

Write the declaration for a function that returns a reference to an array of ten strings, without using either a trailing return, decltype, or a type alias.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <string>
using std::string;

string (&foo1())[10];

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now