Acessando uma variável em C ++ "unindo" seu nome

Digamos que eu tenho uma variável:

 int fish5 = 7;

Posso acessar o fish5 concatenando os termos "fish" e "5" de alguma forma?

Uma solução ideal seria algo como isto:

 printf("I am displaying the number seven: %i", fish + 5);

questionAnswers(4)

yourAnswerToTheQuestion