Question d’entretien chez NVIDIA

Write a C function that reverses the words in a string without using any memory overhead.

Réponse à la question d'entretien

Utilisateur anonyme

12 oct. 2009

Standard programming interview question. Reverse the character order of the entire string, then go through the string and reverse the characters in each word.

6