Question d’entretien chez Microsoft

Write a C++ code to reverse the order of words in a string, without using any additional buffer.

Réponse à la question d'entretien

Utilisateur anonyme

23 févr. 2011

1. Flip the entire string 2. Flip each word of the reversed string.

6