Question d’entretien chez Intel Corporation

How can you reverse a string in C?

Réponse à la question d'entretien

Utilisateur anonyme

5 juil. 2019

e = strlen (s)- 1 for (b = 0; b < c; b++) { r[b] = s[e]; e--; }